aboutsummaryrefslogtreecommitdiffstats
path: root/asm/src
Commit message (Collapse)AuthorAgeFilesLines
* HandleProviderDelimiter: rename JEM_MODULAR_CLASSFILE to MODULAR_CLASSFILEAlexander Kriegisch2023-02-281-1/+1
| | | | | | The other constants do not have the JEM_ prefix from JavaElement either. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
* Sync HandleProviderDelimiter with JDT Core & AJDTAlexander Kriegisch2023-02-262-16/+35
| | | | | | | | | | | | | | | | | | | | | | New constants: JEM_MODULAR_CLASSFILE - '\'' (single quote) ANNOTATION - '}' LAMBDA_EXPRESSION - ')' LAMBDA_METHOD - '&' STRING - '"' MODULE - '`' DELIMITER_ESCAPE - '=' Updated AspectJ constants due to JDT Core using constants previously used by AspectJ: ADVICE - '&' to '§' ASPECT_TYPE - '\'' to '>' ITD_METHOD - ')' to '°' DECLARE - '`' to '´' POINTCUT - '"' to '©' Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
* Reduce 'Object' class usageAndrey Turbanov2022-04-153-4/+4
|
* Merge pull request #103 from turbanoff/redundant_boxingAndy Clement2021-12-131-5/+5
|\ | | | | Cleanup redundant boxing.
| * Cleanup redundant boxing.Andrey Turbanov2021-11-201-5/+5
| | | | | | | | | | Methods Integer.parseInt/Boolean.parseBoolean should be preferred over Integer.valueOf/Boolean.valueOf/ if final result is primitive. They are generally faster and generate less garbage.
* | Replace uses of StringBuffer with StringBuilder.Andrey Turbanov2021-11-203-11/+11
|/ | | | StringBuffer is a legacy synchronized class. StringBuilder is a direct replacement to StringBuffer which generally have better performance.
* Upgrade license from CPLv1/EPLv1 to EPLv2Alexander Kriegisch2021-06-0419-136/+136
| | | | | | | This was required by the Eclipse team as one precondition for the next release. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
* Fix some deprecated Java and JUnit warnings by using newer API callsAlexander Kriegisch2021-03-212-13/+13
| | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
* Fix misplaced or incorrect javadoc tagsJerry James2020-09-143-4/+4
|
* Fix misplaced or incorrectly nested HTML tagsJerry James2020-09-141-1/+2
|
* Fix incorrect HTML entities in javadoc commentsJerry James2020-09-144-8/+8
|
* Remove unnecessary interface modifiersLars Grefer2020-08-176-204/+204
| | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* polishAndy Clement2020-08-162-7/+4
|
* Merge branch 'master' into feature/collection-performanceAndy Clement2020-08-153-3/+0
|\
| * Cleanup unused importsLars Grefer2020-08-163-3/+0
| | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Weaken Collection declarationsLars Grefer2020-08-153-3/+7
|/ | | | | | Reports on declarations of Collection variables made by using the collection class as the type, rather than an appropriate interface. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* Use the diamond operator where possibleLars Grefer2020-08-135-34/+34
| | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* Unnecessary unboxingLars Grefer2020-08-083-8/+8
| | | | | | 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-081-3/+3
| | | | | | 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-082-5/+5
| | | | | | 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>
* 'for' loop replaceable with enhanced 'for' loopLars Grefer2020-08-086-33/+24
| | | | | | 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>
* Add module tests back in - but streamlinedAndy Clement2019-01-311-0/+33
|
* mavenizing asm module - finishedAndy Clement2019-01-231-34/+0
|
* mavenizing asm module - wipAndy Clement2019-01-2319-0/+120
|
* Polish genericsAndy Clement2014-10-072-4/+6
|
* 351085aclement2011-09-161-4/+35
|
* 328121aclement2011-04-281-1/+11
|
* 333123aclement2011-02-012-2/+111
|
* 330170aclement2011-01-061-3/+6
|
* annotation removal program element supportaclement2010-11-253-7/+40
|
* 330170: debug addedaclement2010-11-131-21/+28
|
* 329111aclement2010-10-312-12/+14
|
* 329111aclement2010-10-292-51/+57
|
* 324804aclement2010-09-091-19/+23
|
* create writable map before writing to it!aclement2010-08-251-0/+1
|
* source locations for declare annos (not persisted) and fqname of handles for ↵aclement2010-08-183-1/+19
| | | | itds
* 322446: mechanism for a concrete aspect to remember the actual effects of ↵aclement2010-08-132-0/+14
| | | | any decps it causes to apply
* 320425: handle changesaclement2010-07-231-11/+12
|
* genericsaclement2010-07-144-51/+74
|
* genericsaclement2010-07-142-60/+23
|
* kick buildaclement2010-07-131-1/+1
|
* genericsaclement2010-07-0811-376/+193
|
* genericsaclement2010-07-0710-204/+177
|
* 310144aclement2010-04-291-2/+1
|
* remove override annosaclement2010-04-291-3/+0
|
* 310704aclement2010-04-281-46/+87
|
* 305788: synchronization around map accessesaclement2010-03-231-59/+78
|
* improved assertaclement2010-01-221-214/+135
|
* stateless jdtlikehandleprovider so handles can optionally be cached now. ↵aclement2009-08-253-37/+324
| | | | Currently still cached
* few more helper methodsaclement2009-08-241-0/+103
|