Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-26 | Fix for issue 339: return "java/lang/Object" when an error occurs. | Roel Spilker | |
2012-03-19 | Added debugging code to find the cause of issue 339 | Roel Spilker | |
2012-02-13 | Smart ATHROW reducer removed because that can at least in theory go wrong, ↵ | Reinier Zwitserloot | |
and saving one byte isn't relevant, as far as I know. This is simpler, too :) | |||
2012-01-31 | Updated copyright notice in command line tool help, made debug tool=true ↵ | Reinier Zwitserloot | |
subapps not show up in the list of available commands. | |||
2012-01-30 | Added a tool to display the constant pool for a list of class files | Roel Spilker | |
2012-01-30 | Made LombokApp an abstract class and added isDebugTool. | Roel Spilker | |
2012-01-23 | Fixed bug in reading long and double values | Roel Spilker | |
2012-01-09 | Updated to ASM4 final. | Reinier Zwitserloot | |
2011-12-20 | Moved 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-11-07 | Changed copyright notices | Roel Spilker | |
2011-10-24 | pretty 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-07 | Updated to ASM 4.0RC1 so that we can deal with java7, | Reinier Zwitserloot | |
especially class files built with java7. Fixes issue #188 | |||
2011-06-06 | Issue 188: add class file pool constants for methodhandles and invokedynamic ↵ | Roel Spilker | |
(java7) | |||
2010-11-09 | Added lombok.Lombok.preventNullAnalysis to the null test in @Cleanup to suppress | Roel Spilker | |
warnings about variables that cannot be null | |||
2010-09-30 | bugfix for the sneakyThrows remover: In rare cases would erroneously delete ↵ | Reinier Zwitserloot | |
an ATHROW opcode. | |||
2010-08-15 | Documented the ClassFileMetaData utility. | Reinier Zwitserloot | |
2010-08-07 | Fixed some bugs in reading the constant pool and added tests | Roel Spilker | |
2010-08-05 | Created utility class to casually inspect class files on the usage of ↵ | Roel Spilker | |
classes, fields and methods | |||
2010-08-05 | Remove the double-athrow | Roel Spilker | |
2010-08-03 | Post Compiler now works, including the sneaky throws remover. Also added a ↵ | Roel Spilker | |
lombok app for it. Not yet in eclipse, though | |||
2010-08-03 | Hey, the sneaky throws remover works, at least when run separately. | Roel Spilker | |