diff options
author | jhugunin <jhugunin> | 2002-12-31 00:54:23 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-31 00:54:23 +0000 |
commit | 742ae9055d4c9caa2194c64a129ba2d94b0fb6ec (patch) | |
tree | de475a272547be8dafa7d665e71da68edbe73030 /tests/new/CflowCycles.java | |
parent | 2df90bb2b709ad637e98ae57c55f307632fae3e2 (diff) | |
download | aspectj-742ae9055d4c9caa2194c64a129ba2d94b0fb6ec.tar.gz aspectj-742ae9055d4c9caa2194c64a129ba2d94b0fb6ec.zip |
can't do around x initialization
Diffstat (limited to 'tests/new/CflowCycles.java')
-rw-r--r-- | tests/new/CflowCycles.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/CflowCycles.java b/tests/new/CflowCycles.java index 3bcabe612..0eeae1195 100644 --- a/tests/new/CflowCycles.java +++ b/tests/new/CflowCycles.java @@ -17,7 +17,7 @@ class Target { aspect A1 { pointcut TargetRunFlow () // ok if no cflow: within(Target) && execution(* *(..)) && !within(A1+); - : !within(A1+) && !preinitialization(new(..)) //cflow(within(Target) && execution(* *(..))) && !within(A1+) + : !within(A1+) && !preinitialization(new(..)) && !initialization(new(..))//cflow(within(Target) && execution(* *(..))) && !within(A1+) ; Object around () : TargetRunFlow() { Tester.event("target A1"); |