aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/JDTLikeHandleProvider/base/pkg/A.aj
blob: 4e2e07daab8fa09a96c2775993e1dec8bf9b4fdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package pkg;

aspect A {
	
	before() : execution(* *.*(..)) {
	}
	
	after() : callPCD(){
	}
	after() : execPCD(){
	}
	pointcut callPCD(): call(* *.*(..));
	pointcut execPCD(): execution(* *.*(..));
}

class C {
	
	public void m() {
	}
	
    static { 	
    }
}