aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before
AgeCommit message (Collapse)Author
2023-01-11[test] Just cleaning up tests that fail on javac8/6 and ecj.Reinier Zwitserloot
These tests should fail on j6/8 as they use newer features; the test files lacked proper markings so they weren't being skipped.
2022-04-02Merge pull request #3155 from Rawi01/extensionmethod-conditional-methodrefReinier Zwitserloot
Improve the handling of ExtensionMethod arguments
2022-03-29[fixes #3153] Improve the handling of ExtensionMethod argumentsRawi01
2022-03-17[fixes #2990] Treat records and enums as places where `static` is allowed.Reinier Zwitserloot
2022-03-17Merge branch 'fix-enum-logging' of https://github.com/varkart/lombok into ↵Reinier Zwitserloot
varkart-fix-enum-logging
2022-02-25Fixes #3120JohnPaulTaylorII
Update AUTHORS file. Remove extraneous code from EqualsAndHashCodeWithNonNullByDefault test case.
2022-02-23Fixes #3120JohnPaulTaylorII
2022-02-17[fixes #2990, #3069] slf4j logger enum test casesvarkart
2022-02-17[fixes #2990, #3069] log4j2 logger enum test casesvarkart
2022-02-17[fixes #2990, #3069] log4j logger enum test casesvarkart
2022-02-17[fixes #2990, #3069] jul logger enum test casesvarkart
2022-02-17[fixes #2990, #3069] jboss logger enum test casesvarkart
2022-02-17[fixes #2990, #3069] flogger logger enum test casesvarkart
2022-02-08[implements #1456] accessors can now be made final via `@Accessors`.Reinier Zwitserloot
2022-01-31[fixes #3053] Delay default annotation removalRawi01
2022-01-30[fixes #3097] Update inner class type when creating a static classRawi01
2021-12-30[fixes #3070] fix guava type name for SuperBuilder's toBuilderJan Rieke
2021-12-21[fixes #2849] Make ToString's onlyExplicitlyIncluded a config key.Reinier Zwitserloot
2021-12-12[fixes #3036] Keep builder default initializer positionRawi01
2021-12-12[fixes #3040] Support array initializer in onXRawi01
2021-10-26[issue #3014] test-case that reproduces this problem.Reinier Zwitserloot
2021-10-22[fixes #2995] Skip records for field defaults via configRawi01
2021-10-22[fixes #2985] Resolve var/val only once in eclipseRawi01
2021-10-18[#2693] Review and updates for javabeans-style capitalization lombok.configReinier Zwitserloot
2021-10-17Adding a new accessors flag - javaBeansSpecCapitalizationysherwin
2021-09-27[tests] Exclude recently added 'val' testRawi01
2021-09-16Merge pull request #2866 from Rawi01/anonymous-inner-classReinier Zwitserloot
Handle anonymous classes properly
2021-09-16Merge pull request #2840 from Rawi01/copy-vartypeReinier Zwitserloot
Also copy vartype.type in TreeMirrorMaker
2021-09-06Replace val with native final var in Java >= 10Rawi01
2021-06-06[testing] Fix javac6 testsRawi01
2021-06-03[fixes #2838] Handle anonymous classes properlyRawi01
Generated qualified names (e.g. Outer.Inner) now stop at anonymous classes instead of adding an empty part. All handlers that add static fields/methods/types now add error messages instead of generating invalid code.
2021-05-14Copy reference types properlyRawi01
2021-05-12[fixes #2420] Copy vartype.typeRawi01
2021-04-22[fixes #2624] Resolve variables in switch expressionsRawi01
2021-04-16[pr 2702] finishing the `@StandardException` feature.Reinier Zwitserloot
* rewritten how it works a bit: Now compatible with parent exceptions that don't have the Throwable variants. * rewritten how it works a bit: You can now provide the full constructor only; the rest will forward to it. * fixing up style. * rewrite the docs.
2021-04-16Merge branch 'standard-exception' of git://github.com/ttzn/lombok into ↵Reinier Zwitserloot
ttzn-standard-exception
2021-04-01[fixes #2787] Handle right hand side of assignment firstRawi01
2021-03-24@StandardException feature working draftttzn
* move feature under experimental * replace ProviderFor with Provides * add doc material (to be completed) * add author
2021-03-24@StandardException feature working draftttzn
* annotation with javac and Eclipse handlers * single test file
2021-03-24Merge pull request #2687 from janrieke/superBuilderConfigBuilderClassNameReinier Zwitserloot
SuperBuilder: consider lombok.builder.className for builder extends clause
2021-03-24[records] [`@NonNull`] eclipse impl onfthe `@NonNull` on record components ↵Reinier Zwitserloot
feature. All tests passing.
2021-03-23[records] [javac] Putting `@NonNull` on a 'field' of a record now affects ↵Reinier Zwitserloot
the compact constructors, generating one if need be.
2021-03-22[deps] pushing ASM to 9.1, and ASM opcode compat levels to ASM9, as we need ↵Reinier Zwitserloot
the support for records
2021-03-22Merge branch 'records'Reinier Zwitserloot
# Conflicts: # src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java # src/core/lombok/eclipse/handlers/HandleBuilder.java # src/core/lombok/eclipse/handlers/HandleData.java # src/core/lombok/eclipse/handlers/HandleNonNull.java # src/core/lombok/eclipse/handlers/HandleSuperBuilder.java # src/core/lombok/javac/handlers/HandleBuilder.java # src/core/lombok/javac/handlers/HandleNonNull.java # src/core/lombok/javac/handlers/HandleSuperBuilder.java # test/core/src/lombok/RunTestsViaEcj.java
2021-03-21Merge pull request #2725 from md-5/masterReinier Zwitserloot
[fixes #2724] Increase priority of Builder annotation removal
2021-03-21[trivial] [typofix]Reinier Zwitserloot
2021-03-21Merge pull request #2772 from janrieke/superBuilderNPEwithSingularReinier Zwitserloot
[fixes #2701] fix NPE on customized SuperBuilder with Singular
2021-03-21Merge pull request #2770 from janrieke/superBuilderNPEinConstructorExistsReinier Zwitserloot
[fixes #2704] SuperBuilder: avoid NPE on existing constructors
2021-03-20[fixes #2724] Increase priority of Builder annotation removalmd_5
Otherwise they may run after `HandleDelegate`. This is problematic as `HandleDelegate` parses the compulation unit and `@Builder` may contain imports (eg `AccessLevel`) that were already removed by other processors, eg `@Getter`.
2021-03-19[jdk16] Suddenly, Stream has a default method toList :-)Roel Spilker