]> source.dussan.org Git - aspectj.git/commitdiff
can't use wildcards in target in 1.1
authorjhugunin <jhugunin>
Tue, 17 Dec 2002 22:13:21 +0000 (22:13 +0000)
committerjhugunin <jhugunin>
Tue, 17 Dec 2002 22:13:21 +0000 (22:13 +0000)
tests/new/CallNotTarget.java

index c710e2b606f151c77651918966fad980ea10474b..bcf5199d2d6f546d1a437c13a946babc3b2555cb 100644 (file)
@@ -14,7 +14,7 @@ public class CallNotTarget {
     static {
         Tester.expectEvent("A.before");
         Tester.expectEvent("A.before-not");
-        Tester.expectEvent("A*.before-not");
+        Tester.expectEvent("Aspect.before-not");
         Tester.expectEvent("go");
     }
 
@@ -43,8 +43,8 @@ aspect Aspect {
     before () : pc() && !target (A) { // change to !target(String) to avoid bug
         Tester.event("A.before-not");
     }
-    before () : pc() && !target (A*) { // change to !target(String) to avoid bug
-        Tester.event("A*.before-not");
+    before () : pc() && !target (Aspect) { // change to !target(String) to avoid bug
+        Tester.event("Aspect.before-not");
     }
 
 //     before(): call(void doit(I)) && !args(A) {