blob: a2ddf1eb8c4fd1a71c11fafcc5b1399e9fca4639 (
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
|
import org.aspectj.testing.*;
/** PR#660 name binding in around cflow */
public class ArgsInCflow2 {
public static void main(String[] args) {
Tester.check(3==foo(1), "3==foo(1)");
Tester.checkAllEvents();
}
static int foo(int x) {return bar(x+1);}
static int bar(int x) {return x+1;}
static {
Tester.expectEvent("1-2");
}
}
aspect Test {
int around(final int x, final int y) :
cflow(call(int foo(int)) && args(x))
&& call(int bar(int)) && args(y) {
Tester.event(x + "-" + y);
return proceed(x,y);
}
}
|