blob: d2de525c4861497e761372f731f42dabe4ec407a (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import org.aspectj.testing.Tester;
// PR#297 anonymous inner class with aspect
public class Driver {
public static String s = "";
public static void main(String[] args){
new Test().go();
Tester.checkEqual(s, "-bar-after", "");
}
}
class Test {
void go(){
seto( new I(){
public void foo(){ bar(); }
});
o.foo();
}
void bar(){
Driver.s += "-bar";
}
I o;
void seto(I o){
this.o = o;
}
}
interface I { void foo(); }
aspect A {
void around(): this(I) && target(Test) && within(Test) && call(* bar()){
proceed();
Driver.s += "-after";
}
}
|