diff options
author | wisberg <wisberg> | 2002-12-16 18:51:06 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2002-12-16 18:51:06 +0000 |
commit | 144143c2970a1e874d74cdbd0f8c622d4282a3c3 (patch) | |
tree | b12383d3d9e76c7e1f25f7fbec83051ef17f81fb /tests/new/NonexistentInitializers.java | |
parent | fafae443719b26159ab2d7dac1c9b46b5e00b671 (diff) | |
download | aspectj-144143c2970a1e874d74cdbd0f8c622d4282a3c3.tar.gz aspectj-144143c2970a1e874d74cdbd0f8c622d4282a3c3.zip |
initial version
Diffstat (limited to 'tests/new/NonexistentInitializers.java')
-rw-r--r-- | tests/new/NonexistentInitializers.java | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/new/NonexistentInitializers.java b/tests/new/NonexistentInitializers.java new file mode 100644 index 000000000..2ba43c784 --- /dev/null +++ b/tests/new/NonexistentInitializers.java @@ -0,0 +1,43 @@ +// join points in static/dynamic initializers aren't showing up. +import org.aspectj.testing.Tester; + +public class NonexistentInitializers { + + + public static void main(String[] args) { + new NonexistentInitializers(); + org.aspectj.testing.Tester.checkEqual + (A.i, 4, "Not finding some join points in initializers"); + org.aspectj.testing.Tester.checkEqual(A.foo, 2, "foo"); + org.aspectj.testing.Tester.checkEqual(A.get, 2, "get"); + } + + static void foo() {} + static void bar(Object o) {} + { + bar(System.in); + NonexistentInitializers.foo(); + } + static { + bar(System.in); + NonexistentInitializers.foo(); + } + + +} + +aspect A { + static int i = 0; + static int foo = 0; + static int get = 0; + + before(): call(void NonexistentInitializers.foo()) { + i++; + foo++; + } + before(): get(* System.in) { + i++; + get++; + } +} + |