Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix 404345: another occurence of broken annotation building in JDT | Andy Clement | 2016-11-10 | 12 | -52/+107 |
| | |||||
* | Fix 500796: Allow for kotlin creating 'synthetic' local variable table entries | Andy Clement | 2016-11-07 | 6 | -20/+20 |
| | |||||
* | Upgraded to new JDT compiler - neon.1 and a bit | Andy Clement | 2016-11-07 | 4 | -2/+48 |
| | |||||
* | Fix ambiguous binding problem on anonymous types | Andy Clement | 2016-07-29 | 4 | -0/+36 |
| | | | | | | | | | | | | | | | | | | If an anonymous class calls a method ITD'd onto one of its own supertypes (e.g. new A() { xx(null); }) then it can be reported as an ambiguous method invocation on Java8. There is different handling for Java8 that is revealing an issue. The intertype method declarations are recorded in a member finder attached to the target type (A in this case). When the local type binding is built it gets all the methods from supertypes added to it - this unfortunately includes the ITD method. Then later when something asks for all 'xx' methods on A, it finds the ITD method from when A was constructed and an additional copy from the member finder. The quick fix is for the member finder to use a set rather than list when answering 'what are the xx methods'. If this proves a problem down the line the deeper fix would be to avoid including ITDs when the local type binding is built. | ||||
* | Fix 493554 - Missing InnerClasses attribute for nested interfaces created by ↵ | Andy Clement | 2016-05-12 | 8 | -0/+189 |
| | | | | AspectJ | ||||
* | Fix 490315 - InvokeDynamic.java:126 there is no classname for invokedynamic | Andy Clement | 2016-03-29 | 14 | -0/+217 |
| | |||||
* | Fix 433351: Declare parents fails on interfaces on the inpath depending on ↵ | Andy Clement | 2016-02-18 | 12 | -12/+82 |
| | | | | directory structure | ||||
* | Fix 485583: NullPointerException in ↵ | Andy Clement | 2016-02-10 | 4 | -0/+22 |
| | | | | org.aspectj.ajdt.internal.compiler.ast.PointcutDeclaration | ||||
* | Fix 486612: Can lose a super type bound when weaving a type using generics ↵ | Andy Clement | 2016-01-27 | 5 | -3/+42 |
| | | | | in its declaration | ||||
* | Fixes for compile time overweaving | Andy Clement | 2016-01-20 | 6 | -0/+73 |
| | | | | | | | | | | | | In writing a testcase for 352389 I discovered overweaving just wasn't working for a compile time series of test steps. This was due to a guard preventing secondary calls to addOrReplaceAspect. Without the secondary call the crosscutting collector for the aspect had recorded no mungers from the original aspect because it was still using an EclipseSourceType delegate. Later when it was using the binary BcelObjectType delegate and mungers were available, they weren't collected because of that missing addOrReplaceAspect call. | ||||
* | Fix 486203: NPE in IntelliJ since 1.8.7 | Andy Clement | 2016-01-18 | 5 | -4/+94 |
| | |||||
* | Fix 485055: declare @field failing for final String fields (see also Bug 327141) | Andy Clement | 2016-01-05 | 4 | -0/+183 |
| | |||||
* | Fix 484941 - NPE AnnotationDiscoveryVisitor | Andy Clement | 2016-01-05 | 3 | -0/+18 |
| | |||||
* | Add 1.8.8 testsuite to 1.8 test list | Andy Clement | 2015-11-25 | 1 | -0/+2 |
| | |||||
* | Fix 461323: around advice on default methods | Andy Clement | 2015-11-19 | 4 | -4/+66 |
| | |||||
* | Fix 478003: declare parents with generic itd npe | Andy Clement | 2015-11-18 | 4 | -0/+99 |
| | |||||
* | 476245: compile error already fixed in 1.8.7 | Andy Clement | 2015-09-04 | 3 | -0/+18 |
| | |||||
* | 307147: missing joinpoints for itds invoking private methods | Andy Clement | 2015-09-03 | 8 | -0/+120 |
| | |||||
* | Bug 475152 - infinite loop during build time weaving when more than 2 ↵ | Andy Clement | 2015-09-02 | 7 | -0/+53 |
| | | | | aspects in hierarchy at org.aspectj.weaver.bcel.BcelAdvice.canInline | ||||
* | Support annotation conversion for class annotation values | Andy Clement | 2015-08-06 | 3 | -0/+31 |
| | | | | Issue: https://bugs.eclipse.org/bugs/show_bug.cgi?id=474165 | ||||
* | AspectJ upgraded to Mars compiler | Andy Clement | 2015-06-25 | 37 | -10/+14900 |
| | |||||
* | allow reflection world to resolve generated types (e.g. lambdas) | Andy Clement | 2015-06-08 | 5 | -2/+147 |
| | | | | | | | 1.8.6 release prep 1.8.6 pom updates Fix rogue chars in javadoc rebuilt with javadoc fixes | ||||
* | Do not attach INTERFACE modifier to methods from interfaces | Andy Clement | 2015-05-12 | 1 | -3/+3 |
| | |||||
* | APT and missing declaring type in BTB hierarchy | Andy Clement | 2015-04-23 | 9 | -0/+32 |
| | |||||
* | 462821: invokedynamic detection in hierarchy of aspects | Andy Clement | 2015-03-23 | 8 | -0/+171 |
| | |||||
* | 456457: unresolvable member fix. Testcode for 456801,455608 | Andy Clement | 2015-01-07 | 12 | -0/+140 |
| | |||||
* | Further 451966: privileged aspect and ITDs | Andy Clement | 2014-11-17 | 3 | -2/+43 |
| | |||||
* | Fix for 451966: privileged aspects and itd on interfaces | Andy Clement | 2014-11-17 | 2 | -7/+12 |
| | |||||
* | testcode for 451966 | Andy Clement | 2014-11-17 | 5 | -0/+101 |
| | |||||
* | Fix 449739: support is(FinalType) | Andy Clement | 2014-11-05 | 4 | -0/+67 |
| | |||||
* | Fix 449401: thisAspectInstance compile problem with -1.8 | Andy Clement | 2014-10-30 | 4 | -0/+320 |
| | |||||
* | make tests tidy up after themselvesV1_8_3 | Andy Clement | 2014-10-23 | 1 | -1/+1 |
| | |||||
* | make tests tidy up after themselves | Andy Clement | 2014-10-21 | 2 | -0/+9 |
| | |||||
* | Support for @RequiredTypes and abstract aspects | Andy Clement | 2014-10-21 | 6 | -0/+64 |
| | |||||
* | Fix 443355: interface super references | Andy Clement | 2014-10-08 | 3 | -0/+37 |
| | |||||
* | Fix 443477: remove pre-init from cflow to avoid verify error on jdk 1.7 ↵ | Andy Clement | 2014-10-07 | 2 | -4/+7 |
| | | | | later updates | ||||
* | Fix 436653: conditional aspect activation plus various polish | Andy Clement | 2014-10-06 | 27 | -29/+247 |
| | | | | | | | | | | | | | | Modified test expectation system so it is possible to say the test cares about one particular message and the rest do not matter (prefix message string with '*') - crude but quick. Polished many places to exploit generics Upgraded all the tests to work on Java8 - some serious changes regarding ajdoc on Java8. Hopefully it has stayed backwards compatible with earlier JDK versions (e.g. if using AspectJ 1.8.3+ with a JDK less than 8) but no explicit testing done for this. | ||||
* | 445395: invokedynamic in around advice | Andy Clement | 2014-09-30 | 7 | -0/+241 |
| | |||||
* | Fix for 444398: annotation style abstract aspect extends class error | Andy Clement | 2014-09-17 | 7 | -3/+48 |
| | |||||
* | 442425: fix error on attempted annotation style decp | Andy Clement | 2014-08-27 | 13 | -0/+168 |
| | |||||
* | tidy up after tests finish | Andy Clement | 2014-08-20 | 4 | -0/+24 |
| | |||||
* | enabling AJDT to use annotation processors | Andy Clement | 2014-08-20 | 14 | -13/+405 |
| | |||||
* | -s arg is not necessary | hsestupin | 2014-08-14 | 1 | -1/+1 |
| | | | | Signed-off-by: hsestupin <stupin.sergey@gmail.com> | ||||
* | add APT test generating Java files | hsestupin | 2014-08-14 | 9 | -33/+115 |
| | | | | Signed-off-by: hsestupin <stupin.sergey@gmail.com> | ||||
* | Tests more reliable on 1.7 and later | Andy Clement | 2014-08-08 | 4 | -3/+50 |
| | |||||
* | Fix 440983: RuntimeInvisTypeAnnotation unpacking | Andy Clement | 2014-08-06 | 7 | -0/+126 |
| | |||||
* | Tidy up post APT changes | Andy Clement | 2014-08-05 | 10 | -13/+76 |
| | |||||
* | add apt tests | hsestupin | 2014-08-01 | 96 | -91/+547 |
| | | | | Signed-off-by: hsestupin <stupin.sergey@gmail.com> | ||||
* | 433351: first fix. inpath weaving of decp on generic interface | Andy Clement | 2014-06-19 | 5 | -0/+35 |
| | |||||
* | 436531: fix for weaving when method parameters around | Andy Clement | 2014-06-17 | 6 | -0/+19 |
| |