Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | change to resolvedmember serialization (to support varargs ITDs) is quite ↵ | aclement | 2005-10-07 | 4 | -0/+0 |
| | | | | serious - major version number of attribute rev'd to 4 in this case. | ||||
* | rebuilt post fix for pr110906: varargs ITD | aclement | 2005-10-04 | 4 | -0/+0 |
| | |||||
* | test for pr84033 promoted from failing suite to real suite. | aclement | 2005-10-03 | 3 | -0/+20 |
| | |||||
* | rebuilt due to attribute modifications. | aclement | 2005-09-13 | 4 | -0/+0 |
| | |||||
* | rebuilt jars because of resolvedmember serialization change to remember type ↵ | aclement | 2005-07-27 | 2 | -0/+0 |
| | | | | variables. | ||||
* | changed the serialized form of a WildTypePattern to remember generic info... ↵ | acolyer | 2005-07-22 | 2 | -0/+0 |
| | | | | standby for mass updates of binary comparison tests. | ||||
* | tests for Huff's fix for 102746 - not hooked up b/c harness manages classpath. | wisberg | 2005-07-11 | 3 | -0/+24 |
| | |||||
* | update to binary format as part of generics work | acolyer | 2005-06-09 | 2 | -0/+0 |
| | |||||
* | sorted out the blank lines so the messages will line up with their expected ↵ | aclement | 2005-05-04 | 1 | -1/+0 |
| | | | | locations! | ||||
* | enhancement 91719 - Oli B's tests for xlint warnings, integration work done ↵ | aclement | 2005-05-04 | 1 | -0/+180 |
| | | | | by Andrew Huff. | ||||
* | fixes for annotation type pattern bugs uncovered in 150 tests | acolyer | 2005-03-10 | 2 | -0/+0 |
| | |||||
* | move all java 5 tests out of code and back into .xml files now that we can ↵ | acolyer | 2005-02-11 | 1 | -1/+1 |
| | | | | compile them properly | ||||
* | @testcase PR#84033 incremental declare error persists after fix | wisberg | 2005-01-31 | 3 | -0/+20 |
| | |||||
* | New compiler gives additional error message on 1.3 vm that makes this test fail. | acolyer | 2005-01-17 | 1 | -1/+1 |
| | |||||
* | All jars rebuilt with rev'd weaver version number 2.0 that we will use for ↵ | aclement | 2005-01-07 | 2 | -0/+0 |
| | | | | AspectJ5 (AJ1.2.1 had version 1.0) | ||||
* | more ambiguous bindings testing | acolyer | 2004-12-16 | 2 | -0/+97 |
| | |||||
* | partial fix for bug 61568. | acolyer | 2004-12-15 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | | These changes are both (a) a performance optimization, and (b) an improvement on the binding across || rules that we implemented in 1.2.1. Instead of saying the the first binding in a left-to-right traversal of the pointcuts DNF is the one that you get (too much to ask users to do DNF rewriting in their heads), this version implements the rule that every || branch in the DNF must bind all formals, and if two || branches can have any join points in common (can match join points of the same kind), then both must bind all formals identically. So it allows things like execution(* *(..)) && args(x) || call(* *(..)) && this(x) which previously we used to forbid. But primarily it turned out to be a performance optimization. | ||||
* | updated binary form | acolyer | 2004-12-09 | 4 | -0/+0 |
| | |||||
* | updated binary form | acolyer | 2004-12-08 | 2 | -0/+0 |
| | |||||
* | Rebuilt due to type munger attribute change | aclement | 2004-12-07 | 2 | -0/+0 |
| | |||||
* | work in progress.... annotation pointcuts, parsing, and patterns | acolyer | 2004-12-06 | 2 | -0/+0 |
| | |||||
* | Fix for Bugzilla Bug 74952: before,after !(cflow(within(Trace*))) prints nothing | aclement | 2004-10-21 | 1 | -0/+151 |
| | |||||
* | Fix for Bugzilla Bug 76096: Anonymous classes unaware of introductions into ↵ | aclement | 2004-10-19 | 1 | -0/+50 |
| | | | | abstract classes (error can't find type $Local$) | ||||
* | @testcase PR#75129 NPE on thisJoinPoint mistake | wisberg | 2004-09-27 | 1 | -0/+29 |
| | |||||
* | fix for Bugzilla Bug 72157 | acolyer | 2004-09-08 | 2 | -1/+36 |
| | | | | declare soft can cause programs with invalid exception behaviour to be generated | ||||
* | Fix for Bugzilla Bug 72528 | aclement | 2004-09-03 | 1 | -0/+75 |
| | | | | around advice throws java.lang.VerifyError at runtime | ||||
* | tests for Bugzilla Bug 70404 | aclement | 2004-08-27 | 3 | -0/+47 |
| | | | | passing null to array arguments confuzes static join point signature. | ||||
* | Fix for Bugzilla Bug 72699 | aclement | 2004-08-27 | 2 | -0/+7 |
| | | | | Bogus error message: The abstract method ajc$pointcut$$tracingScope$a2 in type Tracing can only be defined by an abstract class | ||||
* | fix for Bugzilla Bug 72150 | aclement | 2004-08-27 | 5 | -0/+53 |
| | | | | AJC possible bug with static nested classes | ||||
* | fix for Bugzilla Bug 72531 | acolyer | 2004-08-24 | 3 | -0/+67 |
| | | | | declare warning warns at wrong points | ||||
* | Fix for Bugzilla Bug 70794 | aclement | 2004-08-20 | 1 | -1/+1 |
| | | | | | The introduction on interface causes the interface implementation class error (testcase now expects the error text) | ||||
* | Fix for Bugzilla Bug 70794 | aclement | 2004-08-20 | 4 | -0/+96 |
| | | | | The introduction on interface causes the interface implementation class error | ||||
* | BcWeaverJarMaker updates - now line numbers have changed. | aclement | 2004-08-19 | 2 | -0/+0 |
| | |||||
* | fix for Bugzilla Bug 37020 | acolyer | 2004-08-19 | 2 | -0/+0 |
| | | | | wrong line for method execution join point | ||||
* | fix for Bugzilla Bug 71723 | acolyer | 2004-08-18 | 2 | -0/+53 |
| | | | | Inconsistency in scoping of protected members in ITDs | ||||
* | Removed 1.4 api (doh!) | aclement | 2004-08-18 | 1 | -1/+1 |
| | |||||
* | test for Bugzilla Bug 64069 | acolyer | 2004-08-18 | 1 | -0/+43 |
| | | | | ITD name clashes with private members | ||||
* | Test and fix for Bugzilla Bug 62642 | aclement | 2004-08-17 | 1 | -0/+40 |
| | | | | proper handling of ExceptionInIntializer inside <clinit> in presence of after throwing advice | ||||
* | Fixes for: | aclement | 2004-08-16 | 7 | -0/+67 |
| | | | | | Bugzilla Bug 67578: Privileged Aspect Access Problem Across Packages Bugzilla Bug 67579: NPE on privileged aspect error | ||||
* | Fix and tests for Bugzilla Bug 71372 | aclement | 2004-08-13 | 6 | -0/+128 |
| | | | | NoSuchMethodError calling private method from around advice in inner aspect | ||||
* | fix for Bugzilla Bug 61768 | acolyer | 2004-08-11 | 3 | -12/+76 |
| | | | | scope for intertype methods | ||||
* | Tests and fix for Bugzilla Bug 54421 | aclement | 2004-08-11 | 2 | -0/+78 |
| | | | | Compile time declarations (warning and error) do not accept string concatenation (with +) | ||||
* | Fix and tests for Bugzilla Bug 68991 | aclement | 2004-08-11 | 2 | -0/+103 |
| | | | | intertype initialisers should match field set pointcuts | ||||
* | tests for pr62475 (disabled at present) | acolyer | 2004-08-11 | 1 | -0/+28 |
| | |||||
* | fix for Bugzilla Bug 61572 | acolyer | 2004-08-10 | 1 | -0/+44 |
| | | | | ITDs on inner classes should be static contexts | ||||
* | Fix for Bugzilla Bug 65319 | aclement | 2004-08-10 | 1 | -0/+30 |
| | | | | ajc crashes when compiling the following program (binding this() and target()) | ||||
* | fix for Bugzilla Bug 53981 | acolyer | 2004-08-10 | 3 | -0/+53 |
| | | | | proceed used as method name in around advice | ||||
* | test for 70201 | acolyer | 2004-08-10 | 1 | -0/+13002 |
| | |||||
* | fix for Bugzilla Bug 59208 | acolyer | 2004-08-10 | 5 | -0/+16477 |
| | | | | Weaver fails in BCEL for large classe | ||||
* | Fix for Bug 71377: Cannot advise private method call in around advice | aclement | 2004-08-09 | 3 | -0/+168 |
| |