diff options
author | aclement <aclement> | 2006-01-26 15:32:48 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-01-26 15:32:48 +0000 |
commit | 7e40a6094541d2191f09d810b3330c4858ed8952 (patch) | |
tree | 777d77096a21f53726ea5d2ea2794d6d2648cd34 /tests/bugs151 | |
parent | 027fe98f13c245e89cc57876dea418d70bff50cb (diff) | |
download | aspectj-7e40a6094541d2191f09d810b3330c4858ed8952.tar.gz aspectj-7e40a6094541d2191f09d810b3330c4858ed8952.zip |
helens changes for 125295 - should keep AJDT happy.
Diffstat (limited to 'tests/bugs151')
-rw-r--r-- | tests/bugs151/pr125295/pkg/A.aj | 18 | ||||
-rw-r--r-- | tests/bugs151/pr125295/pkg/C.java | 9 |
2 files changed, 27 insertions, 0 deletions
diff --git a/tests/bugs151/pr125295/pkg/A.aj b/tests/bugs151/pr125295/pkg/A.aj new file mode 100644 index 000000000..53aa6bc99 --- /dev/null +++ b/tests/bugs151/pr125295/pkg/A.aj @@ -0,0 +1,18 @@ +package pkg; + +import org.aspectj.lang.JoinPoint; + +public aspect A { + + pointcut p() : within(C) && execution(* *(..)); + + before() : p() { + } + + after(): execution(void printParameters(..)) { + } + + static private void printParameters(JoinPoint jp) { + } + +} diff --git a/tests/bugs151/pr125295/pkg/C.java b/tests/bugs151/pr125295/pkg/C.java new file mode 100644 index 000000000..c03c02777 --- /dev/null +++ b/tests/bugs151/pr125295/pkg/C.java @@ -0,0 +1,9 @@ +package pkg; + +public class C { + + public void foo(int i, Object o) { + + } + +} |