diff options
author | avasseur <avasseur> | 2005-06-08 16:19:16 +0000 |
---|---|---|
committer | avasseur <avasseur> | 2005-06-08 16:19:16 +0000 |
commit | 4f1ce6df3b3f3fb2d6186d08438952df4cadc8a3 (patch) | |
tree | ab9845a0580c146b853d0ead85941f9e9eb83ac8 /weaver/testdata | |
parent | 6ba1097458b56cdf0aa274a46da5dd2af0302d36 (diff) | |
download | aspectj-4f1ce6df3b3f3fb2d6186d08438952df4cadc8a3.tar.gz aspectj-4f1ce6df3b3f3fb2d6186d08438952df4cadc8a3.zip |
@style if support, parser support for if() / if(true)/ if(false) [might lead to issue with code style to allow "if()" )
Diffstat (limited to 'weaver/testdata')
-rw-r--r-- | weaver/testdata/visitor.pointcuts.txt | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/weaver/testdata/visitor.pointcuts.txt b/weaver/testdata/visitor.pointcuts.txt index f75db3d5c..17e4a7d9f 100644 --- a/weaver/testdata/visitor.pointcuts.txt +++ b/weaver/testdata/visitor.pointcuts.txt @@ -2340,3 +2340,60 @@ this(i) target(foo) set(Integer *) call(* System.*(..)) +(args(x) && if()) +(execution(void IfPcd.main(..)) && if()) +if() +(args(o) && if()) +(if() && execution(* LazyTjp.doit(..))) +(if() && execution(* LazyTjp.doit2(..))) +(if() && execution(* LazyTjp.doit3(..))) +if(true) +(execution(* doCommand(..)) && if()) +if(false) +(within(IfFalse) && if(false)) +!if(true) +(!if() && execution(* *(..))) +(within(IfTrue) && !if(true)) +(execution(void m2()) && if()) +(execution(void main(..)) && !if()) +(execution(void main(..)) && if()) +(execution(void main(String)) && (!if() && args(a))) +call(* ThisJoinPointAndVerifier.*(..)) +(if() && (lexicalScope() && !within(Trace+))) +serverIdentification(FTPServer) +(checkedCut() && if()) +(if() && if()) +(if() && (if() && call(void IfPCDExprJoinPointVisibleCE.main(..)))) +(if() && (if() && callMain(args))) +ifFalse(Object) +(this(t) && if()) +(!within(Aspect) && if()) +(if(true) && set(int BaseApp.i)) +(if(true) && get(int BaseApp.i)) +(if(true) && (call(void *.call(int)) && within(BaseApp))) +(if(true) && call(void BaseApp.call(int))) +(if(true) && (within(BaseApp) && execution(void *(int)))) +(if(true) && initialization(BaseApp.new(..))) +(if(true) && call(void *.uncountedCall())) +(if(true) && call(void BaseApp.uncountedCall())) +(if(true) && execution(void BaseApp.uncountedCall())) +(if() && (!within(A) && (!call(* A.*(..)) && (!initialization(new(..)) && !preinitialization(new(..)))))) +(hasEnclosingJoinPoint() && enclosingDiffers()) +!enclosingDiffers() +(hasEnclosingJoinPoint() && !enclosingDiffers()) +hasDifferentEnclosingJoinPoint() +(execution(static String PR590.staticMethod()) && if()) +(args(i) && (if() && safety())) +(safety() && if()) +(if() && get(int AroundCasting.x)) +(call(String C.doit(Object)) && if()) +(execution(String C.doit(Object)) && if()) +(p() && if()) +(if() && (call(void C.foo(C)) && args(d))) +(execution(* Test.a(..)) && if()) +set(@(Persisted) @(Classified) * *) +(call(* *(..)) && @target(Classified)) +(call(* *(..)) && @target(classificationInfo)) +callToClassifiedObject(classification) +@args(Classified, ..) +classifiedArgument() |