Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | mavenized org.aspectj.matcher - finished | Andy Clement | 2019-01-23 | 6 | -94/+4 | |
| | ||||||
* | mavenized org.aspectj.matcher module - wip | Andy Clement | 2019-01-23 | 302 | -45/+47 | |
| | ||||||
* | 543657: overweaving declare parents fix | Andy Clement | 2019-01-21 | 1 | -1/+1 | |
| | ||||||
* | 389678: Better support for overweaving | Andy Clement | 2019-01-21 | 3 | -9/+36 | |
| | | | | | | | | | | | | More testcases for overweaving and better handling of WeaverStateInfo to avoid the dreaded problems deserialized the 'special key' used to store diffs. With these changes once a class is woven via overweaving we switch the diff we store in the weaverstateinfo to 0 byte array (indicating overweaving happened for later weavers that see it). We also stop writing the special 'key' into the attribute and avoid looking-for and attempting to replace it at the end of weaving. | |||||
* | Dig deeper to find WildTypePattern in DeclareParents | Andy Clement | 2019-01-17 | 2 | -35/+86 | |
| | | | | | | | The existing check crudely only checked the top level, failing to find nested WildTypePatterns. Resolves #542682 | |||||
* | Diagnostics for https://bugs.eclipse.org/bugs/show_bug.cgi?id=543023 | Andy Clement | 2019-01-11 | 1 | -1/+6 | |
| | ||||||
* | better infrastructure for checking pointcuts terminate correctly - inactive ↵ | Andy Clement | 2019-01-09 | 4 | -2/+22 | |
| | | | | right now | |||||
* | Fix 541325 - Support is(AbstractType) | Andy Clement | 2018-11-19 | 2 | -0/+5 | |
| | ||||||
* | 537825: Remove FINAL for cflow related class elements for Java 9+ | Andy Clement | 2018-08-24 | 3 | -12/+6 | |
| | ||||||
* | Fix some generics warnings, add overrides | Andy Clement | 2018-05-29 | 12 | -16/+69 | |
| | ||||||
* | Initial cut at bug 535086 - pertypewithin and non vis types | Andy Clement | 2018-05-25 | 5 | -10/+83 | |
| | | | | | | | In this version unless you specify an aspect is privileged then the pertypewithin clause will not match types not visible from the aspect (private types or default vis types in another package) Debating whether to change this to not require privileged. | |||||
* | Bug#531694: generate more optional thisJoinPoint construction code | Andy Clement | 2018-03-09 | 3 | -8/+56 | |
| | | | | | | | This commit introduces some new methods into the runtime Factory class and modifies code generation to use them (and to use the form of the LDC bytecode that loads class constants). | |||||
* | Fix for Bug 531819 - Negative parameter annotation matching not behaving | Andy Clement | 2018-02-28 | 1 | -1/+8 | |
| | ||||||
* | JDT Upgrade for 1.9.0.rc3 | Andy Clement | 2018-02-05 | 1 | -0/+5 | |
| | ||||||
* | merged | Andy Clement | 2018-01-31 | 11 | -117/+163 | |
|\ | ||||||
| * | Updates to better cope with future JDKs | Andy Clement | 2017-11-09 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The version handling in LangUtil has been overhauled to cope better with post 1.8 releases (JDK9 and JDK10 or 18.3 or whatever they call it). As part of this moved to treating JDK9 as '9' rather than '1.9'. Also removed duplicate version processing logic and had that defer to the one place in LangUtil where we now deal with it. Includes some generics tidyup in ajdoc. More ajdoc work is necessary for Java10 because it removes the standard doclet (old style). However trying to invoke the internal Javadoc handler in Java10 is failing due to module visibility rules. | |||||
| * | fix typo | Andy Clement | 2017-10-23 | 1 | -1/+1 | |
| | | ||||||
| * | Fix 525972 - java.lang.ArrayIndexOutOfBoundsException: 2 (at ↵ | Andy Clement | 2017-10-23 | 1 | -2/+28 | |
| | | | | | | | | org.aspectj.weaver.ResolvedType.getMemberParameterizationMap(ResolvedType.java:970)) | |||||
| * | Fix 526381 - Log-Message for nonReweavableTypeEncountered does not include ↵ | Andy Clement | 2017-10-23 | 1 | -1/+1 | |
| | | | | | | | | class name | |||||
| * | Temporarily removing world reuse - needs a bit more thought | Andy Clement | 2017-10-20 | 1 | -0/+9 | |
| | | ||||||
| * | Added automatic module name | Andy Clement | 2017-10-20 | 1 | -0/+1 | |
| | | ||||||
| * | Fixes Bug 525293 - Spring AOP could be faster | Andy Clement | 2017-09-28 | 4 | -110/+104 | |
| | | | | | | | | | | | | | | Multiple changes here: - annotation unpacking is smarter and if it only needs runtime retention annotations it uses reflection and doesn't unpack the bytes to discover class level retention annotations. - Reflection worlds are shared if for the same classloader. | |||||
| * | Added commentary on a strange bit of code | Andy Clement | 2017-09-27 | 1 | -2/+8 | |
| | | | | | | | | I don't want to change that code until I see more evidence of it misbehaving but I'm having trouble working out why it is there! | |||||
| * | per singleton field no longer final to satisfy 1.9 verification | Andy Clement | 2017-09-27 | 1 | -1/+1 | |
| | | ||||||
| * | Various changes to get tests passing on 1.8 and 1.9 | Andy Clement | 2017-09-24 | 1 | -1/+8 | |
| | | ||||||
* | | Fixes Bug 526594 | Andy Clement | 2017-10-30 | 1 | -0/+3 | |
|/ | | | | Compile error: ClassCastException thrown: org.aspectj.weaver.MissingResolvedTypeWithKnownSignature cannot be cast to ReferenceType | |||||
* | 509327: Minor fixes to improve the situation, wip | Andy Clement | 2016-12-16 | 1 | -2/+1 | |
| | ||||||
* | Fix 500035: handling target only binding in @AJ pointcut | Andy Clement | 2016-11-18 | 1 | -2/+2 | |
| | ||||||
* | Upgraded to new JDT compiler - neon.1 and a bit | Andy Clement | 2016-11-07 | 1 | -8/+5 | |
| | ||||||
* | Fixing generics warnings | Andy Clement | 2016-10-28 | 3 | -33/+10 | |
| | ||||||
* | Code polishing and extra diagnostics around types and parameterized types | Andy Clement | 2016-05-12 | 2 | -7/+7 | |
| | ||||||
* | Fix 488216: Load-time weaver loses class changes of preceding -javaagent | Andy Clement | 2016-03-08 | 3 | -83/+92 | |
| | ||||||
* | additional diagnostic info | Andy Clement | 2016-02-25 | 1 | -1/+1 | |
| | ||||||
* | Fix 433351: Declare parents fails on interfaces on the inpath depending on ↵ | Andy Clement | 2016-02-18 | 2 | -2/+11 | |
| | | | | directory structure | |||||
* | Fix 486612: Can lose a super type bound when weaving a type using generics ↵ | Andy Clement | 2016-01-27 | 1 | -6/+8 | |
| | | | | in its declaration | |||||
* | 482945: obfuscated class file finding outer class | Andy Clement | 2015-12-07 | 1 | -3/+7 | |
| | ||||||
* | Add option not to generate local variable tables in some scenarios | Andy Clement | 2015-08-10 | 1 | -0/+13 | |
| | | | | | | | | | New Xset option generateNewLocalVariableTables defaults to true but can be set to false. In some situations incoming bytecode for weaving doesn't want them adding (e.g. android situations where the bytecode is a bit funky). Issue: https://bugs.eclipse.org/bugs/show_bug.cgi?id=470658 | |||||
* | allow reflection world to resolve generated types (e.g. lambdas) | Andy Clement | 2015-06-08 | 5 | -9/+86 | |
| | | | | | | | 1.8.6 release prep 1.8.6 pom updates Fix rogue chars in javadoc rebuilt with javadoc fixes | |||||
* | 456003: == to equals | Andy Clement | 2015-01-07 | 1 | -8/+8 | |
| | ||||||
* | 456457: unresolvable member fix. Testcode for 456801,455608 | Andy Clement | 2015-01-07 | 1 | -2/+2 | |
| | ||||||
* | Fix 449739: support is(FinalType) | Andy Clement | 2014-11-05 | 2 | -0/+7 | |
| | ||||||
* | Support for @RequiredTypes and abstract aspects | Andy Clement | 2014-10-21 | 1 | -11/+39 | |
| | ||||||
* | Use generics | Andy Clement | 2014-10-08 | 27 | -155/+88 | |
| | ||||||
* | Fix 436653: conditional aspect activation plus various polish | Andy Clement | 2014-10-06 | 15 | -11/+37 | |
| | | | | | | | | | | | | | | 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. | |||||
* | 433351: first fix. inpath weaving of decp on generic interface | Andy Clement | 2014-06-19 | 1 | -0/+6 | |
| | ||||||
* | ASM 5.0.1 plus polish/formatting | Andy Clement | 2014-04-01 | 1 | -5/+3 | |
| | ||||||
* | Polish 1.8.0 and optimized fastmatch for and/or pointcutV1_8_0RC2 | Andy Clement | 2014-03-20 | 6 | -150/+263 | |
| | ||||||
* | merging 1.7.4 fixes into 1.8.0 | Andy Clement | 2014-03-18 | 2 | -0/+28 | |
| | ||||||
* | Bug408721: sync blocks around collection access | Andy Clement | 2013-06-26 | 1 | -40/+50 | |
| | ||||||
* | Preserve ordering of declare annotation when removing and adding annotations | Andy Clement | 2013-06-13 | 2 | -8/+15 | |
| | | | | Issue: 407739 |