blob: efb7cc338c935c568c2832ee75ffa7498f657acd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import org.aspectj.testing.Tester;
// PR#262
import org.aspectj.testing.Tester;
public aspect Driver /*of eachobject(instanceof(CallsTo))*/ {
public static void test() { main(null); }
public static void main(String[] args) {
CallsTo ct = new CallsTo();
Tester.checkEqual(ct.a(), "s", "after calls");
}
pointcut call1(): call(* CallsFrom.b(..)) && within(CallsTo);
before(): call1() {
//System.out.println("before-call1");
}
}
class CallsTo { public String a() { return new CallsFrom().b("s"); } }
class CallsFrom { public String b(String s) { return s; } }
|