summaryrefslogtreecommitdiffstats
path: root/tests/new
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2003-01-08 00:30:34 +0000
committerjhugunin <jhugunin>2003-01-08 00:30:34 +0000
commit08af7fa8afdfdfca61650e2df478ca4f9a55d8f5 (patch)
tree7fe47dbe7cbfce86eefff461dcfa2a9cd1568993 /tests/new
parent4678f4e40b2eb3090b4fa0e5e18b988c3817df6c (diff)
downloadaspectj-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.java9
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() {