blob: 718f1f4d64c173c88a2f1b1ffdab24657183d1a6 (
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
25
|
public class PR83563_2 {
public void bar() {
new Runnable() {
public void run() {
System.out.println("Running...");
}
}.run();
}
public static void main(String[] args) {
new PR83563_2().bar();
int c = PertypewithinTest.aspectOf(PR83563_2.class).cnt;
if (c!=3)
throw new RuntimeException("Expected 3 advice executions but got:"+c);
}
}
aspect PertypewithinTest pertypewithin(PR83563_2) {
public static int cnt = 0;
before() : execution(* *.*(..)) {
cnt++;
System.out.println(thisJoinPoint);
}
}
|