aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-09-29[doc] Added some docs on how to debug lombok for various platforms, also ↵Reinier Zwitserloot
updated changelog with recent changes
2021-09-29Merge pull request #2978 from Rawi01/language-serverReinier Zwitserloot
Add syntax highlighting and javadoc to language server (VSCode)
2021-09-28Support javadoc copying in ecj language serverRawi01
2021-09-28[fixes #2950] Patch language server semantic highlightingRawi01
2021-09-27Merge pull request #2975 from Rawi01/organize-imports-valReinier Zwitserloot
Move 'val' -> 'final var' code to patch method
2021-09-27[tests] Exclude recently added 'val' testRawi01
2021-09-27[fixes #2972] Use simple type, move code to patch methodRawi01
2021-09-18[fixes #2736] Add jackson annotation `JsonUnwrapped` to the 'copy to ↵Reinier Zwitserloot
setters' list.
2021-09-16[issue #2964] fixing the previous commitReinier Zwitserloot
2021-09-16[issue #2964] Try to look in chocolatey's default installation dir.Reinier Zwitserloot
2021-09-16[changelog] documenting previous commit.Reinier Zwitserloot
2021-09-16Merge pull request #2936 from Rawi01/jdk-17Reinier Zwitserloot
Add support for JDK17
2021-09-16Merge pull request #2932 from Rawi01/record-nonnull-symbolsReinier Zwitserloot
Keep record compact constructor parameters
2021-09-16Merge pull request #2868 from Rawi01/clone-primitive-typeReinier Zwitserloot
Clone primitive types
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-16Merge pull request #2930 from Rawi01/eclipse-final-save-actionReinier Zwitserloot
Fix "Use modifier 'final' where possible" cleanup
2021-09-15[fixes #2960] [installer] Fix issue with weird chars in eclipse pathReinier Zwitserloot
Lombok used to attempt to escape 'weird' chars (using a whitelist of chars that need no escaping) when writing out eclipse.ini. However, there _is no_ escaping mechanism available there. Instead, apparently eclipse/java just reads the chars appearing after the `-javaagent:` prefix as literally as possible. Therefore, just.. don't escape, and pray. Spaces, colons, and ats have all been confirmed as working correctly when rendering them literally, and as failing when you attempt to escape them.
2021-09-15[trivial] remove unused importReinier Zwitserloot
2021-09-07[changelog] add previous commit (val to final var) to changelogReinier Zwitserloot
2021-09-06Replace val with native final var in Java >= 10Rawi01
2021-08-18[jdk17] Add support for sealed classesRawi01
2021-08-18[jdk17] Ignore new strictfp warningsRawi01
2021-08-18[jdk17] Fix ThisParamter testRawi01
2021-08-18[jdk17] Add support for guard/parenthesized patternRawi01
2021-08-18[jdk17] Add support for default casesRawi01
2021-08-17[fixes #2907] Keep record compact constructor parametersRawi01
2021-08-15[fixes #2926] WrittenNamesFinder can now detect generated writesRawi01
2021-06-10Improve Builder documentation to emphasize the "builder()" factory method. ↵Roel Spilker
Fixes #2870
2021-06-10SneakyThrows.java fix typo - return String instead voidRoman Ivanov
2021-06-06[testing] Fix javac6 testsRawi01
2021-06-05[fixes #2863] Clone primitive typesRawi01
2021-06-04Followup build fix related to commit 17ac9e77a5Reinier Zwitserloot
That commit added a stub for com.sun.tools.javac.comp.ArgumentAttr: When compiling against stubstubs, the requisite JCTree.Visitor nested class doesn't exist; added this to the existing JCTree stubs-for-the-stubs
2021-06-04Merge pull request #2822 from FlorentMouysset/masterReinier Zwitserloot
Fix @CustomLog-key in lombok.config for some error messages. Issue #2821
2021-06-04Merge pull request #2816 from Rawi01/val-switch-expressionReinier Zwitserloot
Resolve variables in switch expressions
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-06-03Merge pull request #2815 from Rawi01/var-val-cacheReinier Zwitserloot
Cleanup internal argument cache
2021-05-14Copy reference types properlyRawi01
2021-05-12[fixes #2420] Copy vartype.typeRawi01
2021-04-27Fix @CustomLog-key in lombok.config for some error messages. Issue #2821MOUYSSET Florent
2021-04-23Change owner lombok GitHub repositoryRoel Spilker
2021-04-22[fixes #2624] Resolve variables in switch expressionsRawi01
2021-04-18[fixes #2460][fixes #2462] Cleanup internal argument cacheRawi01
2021-04-18Merge pull request #2811 from Rawi01/eclipse-java-16-inaccessibleReinier Zwitserloot
Use MethodHandler instead of reflective defineClass
2021-04-18Merge pull request #2809 from Rawi01/eclipse-javadoc-performanceReinier Zwitserloot
Avoid reading file from disk by reusing the parser source
2021-04-18[records] [@NonNull] slight refactor to ensure any generated canonical ↵Reinier Zwitserloot
constructor is visible to downstream APs We used to remove the canonical constructor on a record that javac generates, and replace it with our own, as we put null checks in it. However, the type mirrors and such Annotation Processors use already have the implicit canonical constructor available. Instead of trying to remove those, let's just take the existing implicit constructor and add to that (and mark it explicit, of course).
2021-04-18[StandardExceptions] fix for javacReinier Zwitserloot
2021-04-18[review] Use javac's internals to update type mirrorsReinier Zwitserloot
This should help with making any annotation processors that run after lombok to 'see' the changes lombok caused properly.
2021-04-18Merge branch 'enter-types-methods-fields' of git://github.com/Rawi01/lombok ↵Reinier Zwitserloot
into Rawi01-enter-types-methods-fields
2021-04-18[StandardException] generate an error if the annotation is on a class that ↵Reinier Zwitserloot
extends nothing.