diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-12-19 20:09:40 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-12-19 20:09:40 +0100 |
commit | ae87a26456245f19d97f8852ea21556cd78e97ef (patch) | |
tree | 1df316ac294e8d9c784c9d3a006ae872404d1345 | |
parent | 6b91620d9efab992ee8e909b3e7b9cac0ac6f607 (diff) | |
download | lombok-ae87a26456245f19d97f8852ea21556cd78e97ef.tar.gz lombok-ae87a26456245f19d97f8852ea21556cd78e97ef.tar.bz2 lombok-ae87a26456245f19d97f8852ea21556cd78e97ef.zip |
Now the type resolver also finds top-level types in a compilation unit that name-shadow. Added tests for the type resolver.
17 files changed, 194 insertions, 3 deletions
diff --git a/src/core/lombok/core/TypeResolver.java b/src/core/lombok/core/TypeResolver.java index 2fa24fd2..e5c3fac8 100644 --- a/src/core/lombok/core/TypeResolver.java +++ b/src/core/lombok/core/TypeResolver.java @@ -73,7 +73,7 @@ public class TypeResolver { // because if you want to know if 'Foo' could refer to 'bar.Foo' when 'baz.Foo' is explicitly imported, the answer is no. if (nameConflictInImportList(typeRef, potentialMatches)) return Collections.emptyList(); - // Check if any of our potentials is even imported in the first place. If not: no matches. + // Check if any of our potentials are even imported in the first place. If not: no matches. // Note that (ourPackage.*) is added to the imports. potentialMatches = eliminateImpossibleMatches(potentialMatches, library); if (potentialMatches.isEmpty()) return Collections.emptyList(); @@ -84,7 +84,7 @@ public class TypeResolver { LombokNode<?, ?, ?> n = context; mainLoop: - while (n != null && n.getKind() != Kind.COMPILATION_UNIT) { + while (n != null) { if (n.getKind() == Kind.TYPE && typeRef.equals(n.getName())) { // Our own class or one of our outer classes is named 'typeRef' so that's what 'typeRef' is referring to, not one of our type library classes. return Collections.emptyList(); @@ -106,7 +106,7 @@ public class TypeResolver { continue mainLoop; } - if (n.getKind() == Kind.TYPE) { + if (n.getKind() == Kind.TYPE || n.getKind() == Kind.COMPILATION_UNIT) { for (LombokNode<?, ?, ?> child : n.down()) { // Inner class that's visible to us has 'typeRef' as name, so that's the one being referred to, not one of our type library classes. if (child.getKind() == Kind.TYPE && typeRef.equals(child.getName())) return Collections.emptyList(); diff --git a/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java b/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java index cc72c206..e027b09d 100644 --- a/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java +++ b/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java @@ -108,6 +108,7 @@ public class PatchDelegate { for (Annotation ann : field.annotations) { if (ann.type == null) continue; TypeBinding tb = ann.type.resolveType(decl.initializerScope); + if (tb == null) continue; if (!charArrayEquals("lombok", tb.qualifiedPackageName())) continue; if (!charArrayEquals("Delegate", tb.qualifiedSourceName())) continue; return true; diff --git a/test/transform/resource/after-delombok/SimpleTypeResolution.java b/test/transform/resource/after-delombok/SimpleTypeResolution.java new file mode 100644 index 00000000..c6e08d70 --- /dev/null +++ b/test/transform/resource/after-delombok/SimpleTypeResolution.java @@ -0,0 +1,11 @@ +class SimpleTypeResolutionFail { + @Getter + private int x; +} +class SimpleTypeResolutionSuccess { + private int x; + @java.lang.SuppressWarnings("all") + public int getX() { + return this.x; + } +} diff --git a/test/transform/resource/after-delombok/TrickyTypeResolution.java b/test/transform/resource/after-delombok/TrickyTypeResolution.java new file mode 100644 index 00000000..9a5aae16 --- /dev/null +++ b/test/transform/resource/after-delombok/TrickyTypeResolution.java @@ -0,0 +1,54 @@ +import lombok.*; +class TrickyDoNothing { + @interface Getter { + } + @Getter + int x; +} +class TrickyDoNothing2 { + @Getter + int x; + @interface Getter { + } +} +class TrickySuccess { + int x; + @java.lang.SuppressWarnings("all") + public int getX() { + return this.x; + } +} +class TrickyDoNothing3 { + void test() { + class val { + } + val x = null; + } +} +class TrickyDoSomething { + void test() { + final java.lang.Object x = null; + class val { + } + } +} +class DoubleTrickyDoNothing { + void test() { + class val { + } + for (int i = 10; i < 20; i++) { + val y = null; + } + } +} +class DoubleTrickyDoSomething { + void test() { + for (int j = 10; j < 20; j++) { + class val { + } + } + for (int i = 10; i < 20; i++) { + final java.lang.Object y = null; + } + } +} diff --git a/test/transform/resource/after-delombok/TrickyTypeResolution2.java b/test/transform/resource/after-delombok/TrickyTypeResolution2.java new file mode 100644 index 00000000..9118767f --- /dev/null +++ b/test/transform/resource/after-delombok/TrickyTypeResolution2.java @@ -0,0 +1,8 @@ +import lombok.*; +class DoNothingDueToTopLevel { + void test() { + val x = null; + } +} +class val { +} diff --git a/test/transform/resource/after-ecj/SimpleTypeResolution.java b/test/transform/resource/after-ecj/SimpleTypeResolution.java new file mode 100644 index 00000000..a0997c67 --- /dev/null +++ b/test/transform/resource/after-ecj/SimpleTypeResolution.java @@ -0,0 +1,15 @@ +class SimpleTypeResolutionFail { + private @Getter int x; + SimpleTypeResolutionFail() { + super(); + } +} +class SimpleTypeResolutionSuccess { + private @lombok.Getter int x; + public @java.lang.SuppressWarnings("all") int getX() { + return this.x; + } + SimpleTypeResolutionSuccess() { + super(); + } +} diff --git a/test/transform/resource/after-ecj/TrickyTypeResolution.java b/test/transform/resource/after-ecj/TrickyTypeResolution.java new file mode 100644 index 00000000..cb06d3c1 --- /dev/null +++ b/test/transform/resource/after-ecj/TrickyTypeResolution.java @@ -0,0 +1 @@ +//ignore
\ No newline at end of file diff --git a/test/transform/resource/after-ecj/TrickyTypeResolution2.java b/test/transform/resource/after-ecj/TrickyTypeResolution2.java new file mode 100644 index 00000000..cb06d3c1 --- /dev/null +++ b/test/transform/resource/after-ecj/TrickyTypeResolution2.java @@ -0,0 +1 @@ +//ignore
\ No newline at end of file diff --git a/test/transform/resource/after-eclipse/SimpleTypeResolution.java b/test/transform/resource/after-eclipse/SimpleTypeResolution.java new file mode 100644 index 00000000..a0997c67 --- /dev/null +++ b/test/transform/resource/after-eclipse/SimpleTypeResolution.java @@ -0,0 +1,15 @@ +class SimpleTypeResolutionFail { + private @Getter int x; + SimpleTypeResolutionFail() { + super(); + } +} +class SimpleTypeResolutionSuccess { + private @lombok.Getter int x; + public @java.lang.SuppressWarnings("all") int getX() { + return this.x; + } + SimpleTypeResolutionSuccess() { + super(); + } +} diff --git a/test/transform/resource/after-eclipse/TrickyTypeResolution.java b/test/transform/resource/after-eclipse/TrickyTypeResolution.java new file mode 100644 index 00000000..cb06d3c1 --- /dev/null +++ b/test/transform/resource/after-eclipse/TrickyTypeResolution.java @@ -0,0 +1 @@ +//ignore
\ No newline at end of file diff --git a/test/transform/resource/after-eclipse/TrickyTypeResolution2.java b/test/transform/resource/after-eclipse/TrickyTypeResolution2.java new file mode 100644 index 00000000..cb06d3c1 --- /dev/null +++ b/test/transform/resource/after-eclipse/TrickyTypeResolution2.java @@ -0,0 +1 @@ +//ignore
\ No newline at end of file diff --git a/test/transform/resource/before/SimpleTypeResolution.java b/test/transform/resource/before/SimpleTypeResolution.java new file mode 100644 index 00000000..ef5ddef2 --- /dev/null +++ b/test/transform/resource/before/SimpleTypeResolution.java @@ -0,0 +1,7 @@ +class SimpleTypeResolutionFail { + @Getter private int x; +} + +class SimpleTypeResolutionSuccess { + @lombok.Getter private int x; +} diff --git a/test/transform/resource/before/TrickyTypeResolution.java b/test/transform/resource/before/TrickyTypeResolution.java new file mode 100644 index 00000000..94d97fe0 --- /dev/null +++ b/test/transform/resource/before/TrickyTypeResolution.java @@ -0,0 +1,49 @@ +import lombok.*; +class TrickyDoNothing { + @interface Getter {} + @Getter int x; +} + +class TrickyDoNothing2 { + @Getter int x; + @interface Getter {} +} + +class TrickySuccess { + @Getter int x; +} + +class TrickyDoNothing3 { + void test() { + class val {} + val x = null; + } +} + +class TrickyDoSomething { + void test() { + val x = null; + class val {} + } +} + +class DoubleTrickyDoNothing { + void test() { + class val {} + for (int i = 10; i < 20; i++) { + val y = null; + } + } +} + +class DoubleTrickyDoSomething { + void test() { + for (int j = 10; j < 20; j++) { + class val {} + } + + for (int i = 10; i < 20; i++) { + val y = null; + } + } +} diff --git a/test/transform/resource/before/TrickyTypeResolution2.java b/test/transform/resource/before/TrickyTypeResolution2.java new file mode 100644 index 00000000..00f2ac39 --- /dev/null +++ b/test/transform/resource/before/TrickyTypeResolution2.java @@ -0,0 +1,8 @@ +import lombok.*; +class DoNothingDueToTopLevel { + void test() { + val x = null; + } +} + +class val {} diff --git a/test/transform/resource/messages-delombok/SimpleTypeResolution.java.messages b/test/transform/resource/messages-delombok/SimpleTypeResolution.java.messages new file mode 100644 index 00000000..3a345d06 --- /dev/null +++ b/test/transform/resource/messages-delombok/SimpleTypeResolution.java.messages @@ -0,0 +1,9 @@ +2:10 ERROR cannot find symbol +symbol : class Getter +location: class SimpleTypeResolutionFail +2:10 ERROR cannot find symbol +symbol : class Getter +location: class SimpleTypeResolutionFail +2:10 ERROR cannot find symbol +symbol : class Getter +location: class SimpleTypeResolutionFail diff --git a/test/transform/resource/messages-eclipse/SimpleTypeResolution.java.messages b/test/transform/resource/messages-eclipse/SimpleTypeResolution.java.messages new file mode 100644 index 00000000..a5ad71f3 --- /dev/null +++ b/test/transform/resource/messages-eclipse/SimpleTypeResolution.java.messages @@ -0,0 +1 @@ +2 error Getter cannot be resolved to a type diff --git a/test/transform/resource/messages-idempotent/SimpleTypeResolution.java.messages b/test/transform/resource/messages-idempotent/SimpleTypeResolution.java.messages new file mode 100644 index 00000000..3a345d06 --- /dev/null +++ b/test/transform/resource/messages-idempotent/SimpleTypeResolution.java.messages @@ -0,0 +1,9 @@ +2:10 ERROR cannot find symbol +symbol : class Getter +location: class SimpleTypeResolutionFail +2:10 ERROR cannot find symbol +symbol : class Getter +location: class SimpleTypeResolutionFail +2:10 ERROR cannot find symbol +symbol : class Getter +location: class SimpleTypeResolutionFail |