aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2017-02-16Fixing issue #1298: `@Builder` with recursive generics didn’t work in ↵Reinier Zwitserloot
javac/delombok.
2017-02-16ExoticJava was missing a marker for java7+; as it contains ARM construct, it ↵Reinier Zwitserloot
needs that.
2017-02-16Fixed versionmatching for our test framework.Reinier Zwitserloot
2017-02-16Reproduces the bug with recursive generics in builder (issue #1298).Reinier Zwitserloot
2017-02-16Added a test case to highlight issue #1302: `@Builder` on non-static inner ↵Reinier Zwitserloot
classes (or constructors of non-static inner classes) doesn't work.
2017-02-10[i1274] Add outer name to type name for nested types in equals.Roel Spilker
2017-02-09[i1014] Only add lombok.Generated if it is explicitly turned onRoel Spilker
2017-01-06add `@lombok.Generated` to generated classes, methods and fieldsRoel Spilker
2017-01-05remove EncodingUtf8 test from ecjRoel Spilker
2016-12-05Fixes #1236: Getter(lazy=true) now emits an error when used on a transient fieldRoel Spilker
2016-12-05Fixes #1254: Value and FieldDefaults should skip static fieldsRoel Spilker
2016-11-22Merge pull request #1235 from bulgakovalexander/bugfix/builderWithTolerateRoel Spilker
Bugfix/builder with tolerate
2016-11-22Merge pull request #1231 from bulgakovalexander/bugfix/NoArgsConstructorForceRoel Spilker
fix of the issue 1228
2016-11-22`var` can now also be configured to emit a warning when used.Roel Spilker
2016-11-13fix of the issue 1230. @Tolerate not working for @Builder methods?Bulgakov Alexander
2016-11-12a initialization of variable like "var o = null;" will throw the compile ↵Bulgakov Alexander
time error "variable initializer is 'null'"
2016-11-11fix for the issue 1228. @NoArgsConstructor(force = true) fails on primitive ↵Bulgakov Alexander
arrays in Eclipse
2016-10-27Use of the 'var' feature is disabled by default.Bulgakov Alexander
Include lombok.var.flagUsage = ALLOW in lombok.config to enable var
2016-10-26The @var annotation has been moved to the experimental package.Bulgakov Alexander
Added a test of a @var variable with null initialization.
2016-10-24added supporting of @var variables. The @var annotation has the same ↵Bulgakov Alexander
functionality as the @val except 'final' modifier.
2016-10-17added supporting for @val variables inside lambdas.Bulgakov Alexander
2016-07-19Fix for issue #1076Roel Spilker
2016-06-29fix broken test for configuration that contained the wrong line numbersRoel Spilker
2016-06-08add test to verify config key callSuper=call works with ValueRoel Spilker
2016-05-11add tests for the combination of Builder and Value/DataRoel Spilker
2016-05-11replace experimental.Builder by Builder in tests if possibleRoel Spilker
2016-05-11Integrate JBossLog codeRoel Spilker
- fix jboss-logging.jar name - add copyright notice to new source files - add cross-references from other @Log annotations - update feature page
2016-05-06Added support for JBoss Logging v3.3.0-Final via @JBossLog [Issue #1103]Thomas Darimont
2016-03-07@Helper is now legal in just about every place method local classes are ↵Reinier Zwitserloot
legal. Also now no longer messes up syntax highlighting in eclipse. Still need to investigate how to improve autocomplete presence of helper methods.
2015-12-18fix issue #932: `@Delegate` would not generate varargs on javacRoel Spilker
2015-11-23[Fixes #945] wither methods for abstract classes now slightly less useless.Reinier Zwitserloot
2015-11-23[Fixes #949] accessor prefixes messed up auto-singular generation.Reinier Zwitserloot
2015-11-23[Fixes #965] Adds a config key to automatically determine the behaviour of ↵Reinier Zwitserloot
equals and hashCode generation when
2015-11-22[Fixes #972] 1-arg lambdas with explicit typing on the argument did not ↵Reinier Zwitserloot
pretty print correctly.
2015-11-17Merge branch 'builderUpdate'Reinier Zwitserloot
2015-11-17Merge remote-tracking branch 'origin/master'Reinier Zwitserloot
2015-11-17[issue #937] Refactored the support for guava’s ImmutableTable.Reinier Zwitserloot
2015-11-17handle ignored tests correctlyRoel Spilker
2015-11-17add the capability to the testing framework to verify that delombok actually ↵Roel Spilker
also handles the changed flag correctly
2015-11-17Merge branch 'master' of https://github.com/spacanowski/lombok into ↵Reinier Zwitserloot
spacanowski-master Conflicts: test/transform/resource/after-delombok/BuilderSingularGuavaListsSets.java test/transform/resource/after-ecj/BuilderSingularGuavaListsSets.java
2015-11-16Merge branch 'enriquedacostacambio-pr-builder-on-instance-methods' into ↵Reinier Zwitserloot
builderUpdate
2015-11-16Merge branch 'pr-builder-on-instance-methods' of ↵Reinier Zwitserloot
https://github.com/enriquedacostacambio/lombok into enriquedacostacambio-pr-builder-on-instance-methods Conflicts: AUTHORS src/core/lombok/Builder.java src/core/lombok/eclipse/handlers/HandleBuilder.java src/core/lombok/javac/handlers/HandleBuilder.java
2015-11-16[builder] Added clearX() functionality for `@Singular` annotations for ↵Reinier Zwitserloot
javac. Also docs and changelog.
2015-11-16[builder] Added clearX() functionality for `@Singular` annotations for ecjReinier Zwitserloot
2015-11-16[trivial] updating a new test to account for the fact that the prettyprinter ↵Reinier Zwitserloot
prints casts a bit different.
2015-11-16Added a prettyprinter test case with some exotic java constructs, and fixed ↵Reinier Zwitserloot
a few bugs involving these. Also removed the old pretty printer.
2015-11-16bugfix for comments near start of nodes (it would throw off alignment in ↵Reinier Zwitserloot
pretty printer).
2015-11-16The bulk of the effort for a new pretty printer.Reinier Zwitserloot
2015-10-26Add tests for `@EqualsAndHashCode` for the attributes `of` and `exclude`Roel Spilker
2015-10-06New feature: FieldDefaults can now be configured to apply to _every_ file, ↵Reinier Zwitserloot
regardless of annotations.