aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * Add a debug flag to workaround issue until we can sort it (565713)Andy Clement2020-08-101-15/+35
| |
* | Unnecessary unboxingLars Grefer2020-08-085-13/+13
| | | | | | | | | | | | Reports "unboxing", e.g. explicit unwrapping of wrapped primitive values. Unboxing is unnecessary under Java 5 and newer, and can be safely removed. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Unnecessary boxingLars Grefer2020-08-086-17/+18
| | | | | | | | | | | | Reports explicit boxing, i.e. wrapping of primitive values in objects. Explicit manual boxing is unnecessary under Java 5 and newer, and can be safely removed. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | 'String.indexOf()' expression is replaceable with 'contains()'Lars Grefer2020-08-0810-14/+14
| | | | | | | | | | | | Reports any String.indexOf() expressions which can be replaced with a call to the String.contains() method available in Java 5 and newer. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | 'while' loop replaceable with enhanced 'for' loopLars Grefer2020-08-081-3/+2
| | | | | | | | | | | | Reports while loops which iterate over collections, and can be replaced with an enhanced for loop (i.e. foreach iteration syntax). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | 'for' loop replaceable with enhanced 'for' loopLars Grefer2020-08-0854-430/+382
|/ | | | | | Reports for loops which iterate over collections or arrays, and can be replaced with an enhanced for loop (i.e. the foreach iteration syntax). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* PolishAndy Clement2020-07-223-59/+73
|
* Fix 550705: tricky intermittent verify errorAndy Clement2020-04-291-11/+24
|
* polishAndy Clement2019-11-281-31/+28
|
* Debug for 551732Andy Clement2019-11-281-9/+14
|
* Fix 550494Andy Clement2019-11-271-8/+11
|
* Fix Bug 550290 - Lack of TypeSafeEnum#hashCode may lead to non-deterministic ↵Andy Clement2019-09-092-27/+43
| | | | bytecode
* polish for 1.9.3V1_9_3Andy Clement2019-04-041-4/+5
|
* 333274: more tests and fixes: nested @Around advice with proceedAndy Clement2019-02-193-1/+28
|
* Adding ProceedingJoinPoint built in typeAndy Clement2019-02-191-1/+1
|
* Fix version tagging for info stringsAndy Clement2019-02-111-1/+1
|
* Add module tests back in - but streamlinedAndy Clement2019-02-011-0/+56
|
* tweak matcher for weaver module requirementsAndy Clement2019-01-253-1/+2
|
* mavenized org.aspectj.matcher - finishedAndy Clement2019-01-235-93/+3
|
* mavenized org.aspectj.matcher module - wipAndy Clement2019-01-23296-1/+6643
|
* 543657: overweaving declare parents fixAndy Clement2019-01-211-1/+1
|
* 389678: Better support for overweavingAndy Clement2019-01-213-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 DeclareParentsAndy Clement2019-01-172-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=543023Andy Clement2019-01-111-1/+6
|
* better infrastructure for checking pointcuts terminate correctly - inactive ↵Andy Clement2019-01-094-2/+22
| | | | right now
* Fix 541325 - Support is(AbstractType)Andy Clement2018-11-192-0/+5
|
* 537825: Remove FINAL for cflow related class elements for Java 9+Andy Clement2018-08-243-12/+6
|
* Fix some generics warnings, add overridesAndy Clement2018-05-2912-16/+69
|
* Initial cut at bug 535086 - pertypewithin and non vis typesAndy Clement2018-05-255-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 codeAndy Clement2018-03-093-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 behavingAndy Clement2018-02-281-1/+8
|
* JDT Upgrade for 1.9.0.rc3Andy Clement2018-02-051-0/+5
|
* mergedAndy Clement2018-01-3110-117/+162
|\
| * Updates to better cope with future JDKsAndy Clement2017-11-091-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 typoAndy Clement2017-10-231-1/+1
| |
| * Fix 525972 - java.lang.ArrayIndexOutOfBoundsException: 2 (at ↵Andy Clement2017-10-231-2/+28
| | | | | | | | org.aspectj.weaver.ResolvedType.getMemberParameterizationMap(ResolvedType.java:970))
| * Fix 526381 - Log-Message for nonReweavableTypeEncountered does not include ↵Andy Clement2017-10-231-1/+1
| | | | | | | | class name
| * Temporarily removing world reuse - needs a bit more thoughtAndy Clement2017-10-201-0/+9
| |
| * Fixes Bug 525293 - Spring AOP could be fasterAndy Clement2017-09-284-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 codeAndy Clement2017-09-271-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 verificationAndy Clement2017-09-271-1/+1
| |
| * Various changes to get tests passing on 1.8 and 1.9Andy Clement2017-09-241-1/+8
| |
* | Fixes Bug 526594Andy Clement2017-10-301-0/+3
|/ | | | Compile error: ClassCastException thrown: org.aspectj.weaver.MissingResolvedTypeWithKnownSignature cannot be cast to ReferenceType
* 509327: Minor fixes to improve the situation, wipAndy Clement2016-12-161-2/+1
|
* Fix 500035: handling target only binding in @AJ pointcutAndy Clement2016-11-181-2/+2
|
* Fixing generics warningsAndy Clement2016-10-283-33/+10
|
* Code polishing and extra diagnostics around types and parameterized typesAndy Clement2016-05-122-7/+7
|
* Fix 488216: Load-time weaver loses class changes of preceding -javaagentAndy Clement2016-03-083-83/+92
|
* additional diagnostic infoAndy Clement2016-02-251-1/+1
|
* Fix 433351: Declare parents fails on interfaces on the inpath depending on ↵Andy Clement2016-02-182-2/+11
| | | | directory structure