From cea08d77998acce659c6ffc712045b9772ad9c65 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 13 Jun 2011 22:07:30 +0200 Subject: Fixed PrintAST, and separately SneakyThrows/Synchronized which failed because the 'isFullParse' boolean was erronously set on a full rebuild, forced by HandleDelegate. HandleDelegate has also been updated to not do so much work if there's no @Delegate in a source file. --- src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/eclipseAgent/lombok/eclipse') diff --git a/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java b/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java index 71fa1dc5..9929de2a 100644 --- a/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java +++ b/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java @@ -103,8 +103,24 @@ public class PatchDelegate { return new String(decl.name); } + private static boolean hasDelegateMarkedFields(TypeDeclaration decl) { + if (decl.fields != null) for (FieldDeclaration field : decl.fields) { + if (field.annotations == null) continue; + for (Annotation ann : field.annotations) { + if (ann.type == null) continue; + TypeBinding tb = ann.type.resolveType(decl.initializerScope); + if (!charArrayEquals("lombok", tb.qualifiedPackageName())) continue; + if (!charArrayEquals("Delegate", tb.qualifiedSourceName())) continue; + return true; + } + } + + return false; + } + public static boolean handleDelegateForType(ClassScope scope) { if (TransformEclipseAST.disableLombok) return false; + if (!hasDelegateMarkedFields(scope.referenceContext)) return false; List stack = visited.get(); StringBuilder corrupted = null; -- cgit