소스 검색

fixed order of join points during initialization to match 1.1

tags/V_1_1_b5
jhugunin 21 년 전
부모
커밋
08af7fa8af
1개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 5
    4
      tests/new/Binkley2.java

+ 5
- 4
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() {

Loading…
취소
저장