Browse Source

can't use wildcards in target in 1.1

tags/V_1_1_b2
jhugunin 21 years ago
parent
commit
7b7572bc37
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      tests/new/CallNotTarget.java

+ 3
- 3
tests/new/CallNotTarget.java View 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) {

Loading…
Cancel
Save