소스 검색

back again, lower case dir name for linux (see 154552#12)

tags/BEFORE_133532
aclement 18 년 전
부모
커밋
e00c0f2931
1개의 변경된 파일33개의 추가작업 그리고 0개의 파일을 삭제
  1. 33
    0
      tests/model/pr141730_1/pr141730.aj

+ 33
- 0
tests/model/pr141730_1/pr141730.aj 파일 보기

@@ -0,0 +1,33 @@
aspect A {
pointcut p() : execution(* *.*(..)) || execution(*.new(..));
before() : p() {
}
}

class C {
public C() {}
public void method() {}
public void intMethod(int i) {}
public void stringMethod(String s) {}
public void myClassMethod(MyClass s) {}
public void twoArgsMethod(int i, String s) {}
public static void main(String[] args) {}
public void multiMethod(String[][] s) {}
public void intArray(int[] i) {}
}

class MyClass {}

Loading…
취소
저장