diff options
author | jhugunin <jhugunin> | 2003-01-08 00:30:34 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-01-08 00:30:34 +0000 |
commit | 08af7fa8afdfdfca61650e2df478ca4f9a55d8f5 (patch) | |
tree | 7fe47dbe7cbfce86eefff461dcfa2a9cd1568993 /tests/new | |
parent | 4678f4e40b2eb3090b4fa0e5e18b988c3817df6c (diff) | |
download | aspectj-08af7fa8afdfdfca61650e2df478ca4f9a55d8f5.tar.gz aspectj-08af7fa8afdfdfca61650e2df478ca4f9a55d8f5.zip |
fixed order of join points during initialization to match 1.1
Diffstat (limited to 'tests/new')
-rw-r--r-- | tests/new/Binkley2.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/new/Binkley2.java b/tests/new/Binkley2.java index cc2c51323..fe0d27d02 100644 --- a/tests/new/Binkley2.java +++ b/tests/new/Binkley2.java @@ -32,24 +32,25 @@ class C { class Post { static List haves = new Vector(); static String[] wants = new String[] { + "preinitialization(C())-Ar-0", "initialization(C())-Ar-0", - "execution(C.<init>)-Ar-0", - "set(C.x)-Ar-0", "execution(C())-Ar-0", + "set(C.x)-Ar-0", "execution(C.foo())-Ar-0", "set(C.x)-Ar-0", "set(C.x)-Ar-0", + "preinitialization(C())-Art-0", "initialization(C())-Art-0", - "execution(C.<init>)-Art-1", + "execution(C())-Art-1", "set(C.x)-Art-2", - "execution(C())-Art-3", "execution(C.foo())-Art-0", "set(C.x)-Art-1", "set(C.x)-Art-2", }; static void post(JoinPoint jp, String name, int num) { + //System.out.println("have: " + jp.toShortString() + "-" + name + "-" + num); haves.add(jp.toShortString() + "-" + name + "-" + num); } static void checkAll() { |