diff options
3 files changed, 69 insertions, 0 deletions
diff --git a/tests/multiIncremental/JDTLikeHandleProvider/base/pkg/A.aj b/tests/multiIncremental/JDTLikeHandleProvider/base/pkg/A.aj new file mode 100644 index 000000000..4e2e07daa --- /dev/null +++ b/tests/multiIncremental/JDTLikeHandleProvider/base/pkg/A.aj @@ -0,0 +1,23 @@ +package pkg; + +aspect A { + + before() : execution(* *.*(..)) { + } + + after() : callPCD(){ + } + after() : execPCD(){ + } + pointcut callPCD(): call(* *.*(..)); + pointcut execPCD(): execution(* *.*(..)); +} + +class C { + + public void m() { + } + + static { + } +} diff --git a/tests/multiIncremental/JDTLikeHandleProvider/inc1/pkg/A.aj b/tests/multiIncremental/JDTLikeHandleProvider/inc1/pkg/A.aj new file mode 100644 index 000000000..5f5e306c5 --- /dev/null +++ b/tests/multiIncremental/JDTLikeHandleProvider/inc1/pkg/A.aj @@ -0,0 +1,23 @@ +package pkg; + +aspect A { + + + before() : execution(* *.*(..)) { + } + after() : callPCD(){ + } + after() : execPCD(){ + } + pointcut callPCD(): call(* *.*(..)); + pointcut execPCD(): execution(* *.*(..)); +} + +class C { + + public void m() { + } + + static { + } +} diff --git a/tests/multiIncremental/JDTLikeHandleProvider/inc2/pkg/A.aj b/tests/multiIncremental/JDTLikeHandleProvider/inc2/pkg/A.aj new file mode 100644 index 000000000..50486f69b --- /dev/null +++ b/tests/multiIncremental/JDTLikeHandleProvider/inc2/pkg/A.aj @@ -0,0 +1,23 @@ +package pkg; + +aspect A { + + before() : execution(* *.*(..)) { + } + + after() : execPCD(){ + } + after() : callPCD(){ + } + pointcut callPCD(): call(* *.*(..)); + pointcut execPCD(): execution(* *.*(..)); +} + +class C { + + public void m() { + } + + static { + } +} |