Explorar el Código

262905: recursive non matching cflow pointcut: corrected testcase

tags/pre268419
aclement hace 15 años
padre
commit
6133a38cd5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      tests/bugs150/PR93345.aj

+ 1
- 1
tests/bugs150/PR93345.aj Ver fichero

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

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

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

Cargando…
Cancelar
Guardar