Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-dev] Pointcut test

Hi
 
I am trying to extract information of a pointcut residue. I notice that by weave time it is reduced to function calls that perform the actual test. For example if I have
 
pointcut pointCutBeforeA(): within(A) && execution(void foo()) && if(useAspect);
 
I see that the the actual test that is returned from BcelAdvice.getPointCutTest() is a function call to some synthetic function that actually does the check. Is there some way, in the context of the weaver, to get the original syntax or is it discarded after the compiler is done?
 
   

Back to the top