aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/bytecode/ClassFileMetaData.java
AgeCommit message (Collapse)Author
2019-09-25[jdk13] Added a new constant pool type to our cp parserReinier Zwitserloot
2018-07-20Replaced StringBuilder by simple char array in "hotspot" methodRoland Praml
2018-02-07[trivial] copyright header year bump to 2018Reinier Zwitserloot
2018-02-06[jdk9] add support for using lombok with JDK9 code when compiling using the ↵Reinier Zwitserloot
new module syntax, and having module-info.java files in your source.
2012-01-23Fixed bug in reading long and double valuesRoel Spilker
2011-12-20Moved Asm utils out of utils and into core, because utils isn't supposed to ↵Reinier Zwitserloot
have an asm dependency and now due to lacking the jarjar treatment all sorts of VerifyError hell breaks loose if you put both lombok.jar and lombok-utils.jar of 0.10.6 in the classpath while compiling with javac.
2011-10-24pretty big refactor; introduced a new source package which should be (and ↵Reinier Zwitserloot
is) separately compilable, i.e. has no deps on any of the others. This is preparation work for being able to access some of these from lombok.ast without creating a cyclic dependency nightmare.
2011-06-06Issue 188: add class file pool constants for methodhandles and invokedynamic ↵Roel Spilker
(java7)
2010-08-15Documented the ClassFileMetaData utility.Reinier Zwitserloot
2010-08-07Fixed some bugs in reading the constant pool and added testsRoel Spilker
2010-08-05Created utility class to casually inspect class files on the usage of ↵Roel Spilker
classes, fields and methods