Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-12 | Fix for issue #436: In eclipse, calling i.e. `list.get(i).extensionMethod()` ↵ | Reinier Zwitserloot | |
would fail with VerifyError when that code is executed in eclipse. | |||
2012-10-23 | Fix for NPEs in the eclipse log for | Reinier Zwitserloot | |
org.eclipse.jdt.internal.compiler.lookup.MethodBinding.sourceMethod(MethodBinding.java:1108) | |||
2012-10-08 | Patches ASTNode.setSourceRange; by default it throws ↵ | Reinier Zwitserloot | |
IllegalArgumentExceptions in certain cases, but with no message, thus making it very hard to figure out what went wrong. The patch throws the same exceptions in the same cases, but gives the exception a useful error message. | |||
2012-08-13 | Fix for issue 401: test(), Object.test(), and super.test() were all allowed ↵ | Reinier Zwitserloot | |
in eclipse for @ExtensionMethod, resulting in VerifyErrors in the emitted class files. | |||
2012-07-05 | fixed stupid memleak in PatchExtensionMethod.. sorry my bad.. | Philipp Eichhorn | |
2012-06-24 | ExtensionMethod didn't work for primitive types in eclipse.. | Philipp Eichhorn | |
this has been fixed | |||
2012-06-18 | Fixed Help Content in Eclipse / ecj support. | Robbert Jan Grootjans | |
- Moved Completion proposal code to the PatchExtensionMethodCompletionProposal class - Moved out error reporting from EclipseAST. - Fixed error reporting of the portals. | |||
2012-06-18 | Split out the GUI function into a separate portal. Though | Robbert Jan Grootjans | |
the portal itself has lost it's function (Eclipse help is currently failing, but this also seems to be caused by val). Major point though is that the Extention methods functionality works both in javac as in Eclipse. | |||
2012-06-12 | Port of lombok-pg's @ExtensionMethod support for eclipse. Doesn't work yet. | Reinier Zwitserloot | |
2012-04-23 | Replaced the 'try some reflection and if that fails, oh well' code with ↵ | Reinier Zwitserloot | |
catch(Throwable) instead of catch(Exception). The whole point is to default to an alternative path is anything goes wrong, and it turns out there are various ways to get Throwables instead of Exceptions. | |||
2012-04-23 | Fix for bug introduced in 48e73a7180ac459d2949e66f2cacc46e08466fce (2 ↵ | Reinier Zwitserloot | |
commits ago). isGenerated was being transplanted twice, resulting in a ClassFormatError. NB: This is my fault - transplanting was the only fix I introduced on top of Philipp's work. | |||
2012-04-19 | fixed: @val didn't work with rawtypes in enhanced for loops | peichhorn | |
2012-04-03 | fix for rename method arguments, from Philipp Eichhorn. | Reinier Zwitserloot | |
2012-03-19 | Fix for issue 342: @Deprecated annotation not propagated to generated ↵ | Roel Spilker | |
getter/setter | |||
2012-02-25 | Handle deprecated by ordinary usage. | Taiki Sugawara | |
2012-02-24 | Add deprecated comment support for eclipse. | Taiki Sugawara | |
2012-02-15 | 'val' is no longer legal in basic for loops now. Fixes issue #346 | Reinier Zwitserloot | |
2012-02-11 | whitespace only | Reinier Zwitserloot | |
2012-01-24 | Fix for issue 328: @Delegate on a field for which we also generate a getter ↵ | Roel Spilker | |
will use the getter for delegation | |||
2012-01-23 | Added null-check to prevent errors in eclipse when working on incomplete files | Roel Spilker | |
2012-01-19 | Merge branch 'Issue_325' of https://github.com/jvanderhel/lombok into jappe | Reinier Zwitserloot | |
2012-01-19 | @Delegate is no longer legal on static entities (previously no immediate ↵ | Reinier Zwitserloot | |
errors but I don't think it would work right anyway), and prettied up the error message when you use @Delegate wrong (on static items or methods with args). Also put back something I accidentally deleted with the previous merge. | |||
2012-01-19 | Removed unused imports from PatchFixes | Reinier Zwitserloot | |
2012-01-19 | [Issue 275] Allow @Delegate on no-argument methods | peichhorn | |
2012-01-18 | 1) rollback of rollback fixRetrieveRightBraceOrSemiColonPosition | Jappe van der Hel | |
2) HandleEqualsAndHashCode now use SetGeneratedByVisitor to ensure "correct" sourcepositions 3) SetGeneratedByVisitor now sets QualifiedNameReference.sourcePositions | |||
2012-01-16 | Issue 325: revert old behaviour of fixRetrieveRightBrace... | Sander Koning | |
2012-01-16 | Merge pull request #27 from jvanderhel/Issue_316_Rename_with_multiple_types_II | Sander Koning | |
Issue 316 rename with multiple types II | |||
2012-01-16 | Code review | Sander Koning | |
2012-01-10 | 1) We now honor the "public" and "abstract" modifier settings | Jappe van der Hel | |
2) Annotations are now handled, but @SuppressWarnings is skipped | |||
2012-01-10 | removeGeneratedMethods was broken, causing the rename to fail | Jappe van der Hel | |
2012-01-10 | "QualifiedName"'s are now also marked as generated during ASTConverter phase ↵ | Jappe van der Hel | |
(just like "SimpleName"'s) This fixes "Rename" when inner types are used (for both the main type and the inner type) | |||
2012-01-09 | The line about lombok added to the about dialog wasn't working for all ↵ | Roel Spilker | |
eclipse releases and ways to boot up eclipse. Now it does. Also added an item for this in the changelog. | |||
2012-01-09 | Lombok now adds a line about itself to the Eclipse about dialog via ↵ | Reinier Zwitserloot | |
patching. This can be used to check that lombok is managing to successfully inject code into the eclipse VM instance. | |||
2012-01-09 | Code review | Roel Spilker | |
2012-01-09 | Merge | Roel Spilker | |
2012-01-09 | Updated copyright years | Roel Spilker | |
2012-01-03 | Found some earlier fixes, commented them and put them together in the ↵ | Jappe van der Hel | |
patchExtractInterface method | |||
2012-01-03 | extract interface now also works on inner types and side types (annotated ↵ | Jappe van der Hel | |
with @Data) comments for generated methods are now skipped | |||
2012-01-03 | Extract interface now works when @Data is present. | Jappe van der Hel | |
For all methods even generated by lombok; comments for generated methods are placed above the "managing" annotations @Override for generated methods are skipped (since there is no valid position for this annotation) | |||
2012-01-02 | trivial | Reinier Zwitserloot | |
2012-01-02 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2012-01-02 | Fixed issue #320: since 0.10.6, lombok didn't work anymore in ecj ↵ | Reinier Zwitserloot | |
(ClassNotFoundError). | |||
2011-12-21 | Extract interface now works when @Data is present. | Jappe van der Hel | |
For all methods even generated by lombok; comments for generated methods are placed above the "managing" annotations @Override for generated methods are skipped (since there is no valid position for this annotation) | |||
2011-12-20 | Fix for Issue 265, Sort members now works when class has @Data and @Log ↵ | Jappe van der Hel | |
annotation | |||
2011-12-19 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2011-12-19 | Now the type resolver also finds top-level types in a compilation unit that ↵ | Reinier Zwitserloot | |
name-shadow. Added tests for the type resolver. | |||
2011-12-13 | Fix for Issue 315: HandleLogger now sets all its sourcepositions and ↵ | jvanderhel | |
generatedBy's. convertToFieldDeclaration now als marks the resulting FieldDeclaration as isGenerated | |||
2011-12-08 | Fix for issue 308: Allows organize imports works with @Delegate Also fixes ↵ | jvanderhel | |
errors in eclipse-log when using @Delegate. | |||
2011-11-28 | Merge branch 'Highlighting' of https://github.com/jvanderhel/lombok into ↵ | Reinier Zwitserloot | |
jvanderhel-Highlighting Conflicts: src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java | |||
2011-11-28 | Merge branch 'Issue_81' of https://github.com/jvanderhel/lombok into ↵ | Reinier Zwitserloot | |
jvanderhel-Issue_81 Conflicts: src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java |