Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-01 | handle experimental flag usage | Jan Rieke | |
2018-05-31 | javac: delete @SuperBuilder when processing it | Jan Rieke | |
2018-05-30 | no custom builders allowed, so there cannot be a toString() method | Jan Rieke | |
2018-05-30 | code formatting, reordering, rename etc. | Jan Rieke | |
2018-05-11 | ecj: setter methods now return self() | Jan Rieke | |
2018-04-27 | fixed generation problem caused by reusing expressions | Jan Rieke | |
2018-04-16 | let @SuperBuilder's toString() call super.toString() | Jan Rieke | |
2018-04-16 | avoid name clashes with generics on the annotated class | Jan Rieke | |
2018-04-15 | use superclass generics for abstract builder class' extends clause | Jan Rieke | |
2018-04-15 | consider generics on the annotated class and potential superclass | Jan Rieke | |
2018-04-14 | revert changes to HandleBuilder (everything is in HandleSuperBuilder) | Jan Rieke | |
2018-04-14 | adjusted expected result of test case | Jan Rieke | |
2018-04-14 | include superclass when referring to parent builder | Jan Rieke | |
example: "ChildBuilder extends Parent.ParentBuilder" | |||
2018-04-10 | correct return type and statement for @Singular | Jan Rieke | |
2018-04-10 | @Override for overridden methods | Jan Rieke | |
2018-04-10 | apply generics on builder extends clause; fixed builder name generation | Jan Rieke | |
2018-04-05 | build class names not configurable any more; removed toBuilder | Jan Rieke | |
2018-04-05 | wildcards for the constructor parameter | Jan Rieke | |
2018-04-05 | wildcards for the builder() method | Jan Rieke | |
2018-04-05 | more generics; return getInstance() instead of this | Jan Rieke | |
2018-04-05 | generics for the Builder class; generate abstract methods | Jan Rieke | |
2018-04-05 | add javac handler | Jan Rieke | |
Conflicts: src/core/lombok/experimental/SuperBuilder.java | |||
2018-03-28 | [builderParentClass] Code to handle builder on enums removed; that doesn’t ↵ | Reinier Zwitserloot | |
make a heck of a lot of sense and enums aren’t extensible in the first place. Also fixed up a wrong access level; now all existing builder tests pass. | |||
2018-03-28 | Merge branch 'master' of https://github.com/janrieke/lombok into janrieke-master | Reinier Zwitserloot | |
Also fixed up style and docs, and updated behaviour when using `@Builder(inherit = true)` to error if you have no parent class. | |||
2018-03-27 | [trivial] some memoryload improvements by not making a new instance but ↵ | Reinier Zwitserloot | |
using a cached one instead. Fixes issue #1579 | |||
2018-03-24 | improve compiler detection for jdk9 later. | Takuya Murakami | |
2018-03-21 | [fix] Fix intellij build with jdk10 (#1572) | Takuya Murakami | |
Add a JavaFileManager class name to KNOWN_JAVA9_FILE_MANAGERS. | |||
2018-03-20 | [issue #1615] fixes a bug where equals and hashcode would mess up if both ↵ | Reinier Zwitserloot | |
the outer and the inner class have generics, the inner is non-static, and you generate equals/hashcode on the inner. Note that in general this is just broken; do not put non-static inner classes in generics-carrying classes in the first place! | |||
2018-02-07 | Parsing for source level broken under JDK9 due to change in 1.X->X ↵ | Reinier Zwitserloot | |
versioning by oracle. | |||
2018-02-07 | [trivial] copyright header year bump to 2018 | Reinier Zwitserloot | |
2018-02-07 | As we’re preparing to release v2, we want to delete the experimental ↵ | Reinier Zwitserloot | |
editions of the Builder and Value annotations… but in case you install lombok v2 into eclipse but use an older lombok as dep in your project, we still do want to process the old annotations. Had to stringly-type a few things to make that happen, but, works now. | |||
2018-02-07 | [var] various upgrades to var: | Reinier Zwitserloot | |
* var is promoted to the main package. * It is no longer an opt-in thing. * bug: var (unlike val) is allowed in old-style for loops, but if you multi-init: for (var i = 0, j="Foo";;), you now get an error that you can't do that. * tests both for the multi-for situation and the new main package variant. | |||
2018-02-07 | [jdk9] forcing new rounds when compiling multiple modules didn’t work. ↵ | Reinier Zwitserloot | |
(FilerException on creating the new round). | |||
2018-01-09 | Potential fix for #1555 | Roel Spilker | |
2018-01-09 | Updated copyright notices to 2018. | Reinier Zwitserloot | |
2018-01-09 | [fixes #1554] javac9 now caches type lookups based on ‘position’ which ↵ | Reinier Zwitserloot | |
is slapped together by a tuple based on the position (as gleaned from the JCTree object) and the source file (as gleaned from.. Log. *facepalm*). We didn’t update log when resolving for i.e. ‘val’, so the caches get all jumbled up. Fixed by setting the Log’s ‘useSource’ method. | |||
2018-01-09 | [fixes #1553] attriber of JDK9 checks the enclosing class’s type, which we ↵ | Reinier Zwitserloot | |
intentionally haven’t set yet. To avoid NPEs, let’s set it. | |||
2018-01-08 | jdk9 Builder.Default works again. Fixes #1547 | Roel Spilker | |
2018-01-06 | Whitelist a JavacFileManager implementation | Liam Miller-Cushon | |
See bazelbuild/bazel#4393 | |||
2017-12-12 | support for @Builder on methods with a generified return type. Fixes #1420 | Roel Spilker | |
2017-12-12 | handle @Builder.Default on generic fields. Fixes #1527 | Roel Spilker | |
2017-12-05 | errors generated during compilation by lombok weren’t being conveyed in ↵ | Reinier Zwitserloot | |
Javac9. | |||
2017-12-05 | Working around newly introduced lint errors in javac9. | Reinier Zwitserloot | |
2017-12-04 | for lombok v2, make generation of ConstructorProperties an optional extra, ↵ | Reinier Zwitserloot | |
instead of default on. | |||
2017-11-29 | replace all fileManagers to make sure we patch the generated bytecode, fixes ↵ | Roel Spilker | |
#1518 | |||
2017-11-29 | delombok in JDK9 now almost works. Some cases of ‘val’ don’t work yet. | Reinier Zwitserloot | |
2017-11-29 | bugfix for delomboking source that does not compile; it should just emit ↵ | Reinier Zwitserloot | |
compiler errors, not stack traces. | |||
2017-11-29 | some bugfixes for JDK9 support involving the Options system of javac. | Reinier Zwitserloot | |
2017-11-28 | JDK9 support for delombok (and thus, for running the tests under JDK9). | Reinier Zwitserloot | |
2017-11-06 | Generate correct hashCode when callSuper and no fields included. Fixes #1505 | Roel Spilker | |