浏览代码

262905: recursive non matching cflow pointcut: corrected testcase

tags/pre268419
aclement 15 年前
父节点
当前提交
6133a38cd5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      tests/bugs150/PR93345.aj

+ 1
- 1
tests/bugs150/PR93345.aj 查看文件

@@ -4,7 +4,7 @@ class AClass {
}

aspect AnAspect {
pointcut a() : cflow( execution(* *(..)) );
pointcut a() : execution(* *(..)) && cflow( execution(* *(..)) );

before() : a() {
System.out.println("before a");

正在加载...
取消
保存