I'm trying to match calls to
javax.el.CompositeELResolver.FeatureIterator.next() with the following
aspect

public privileged aspect CompositeELResolver_FeatureIterator_next{              
                
        after() returning(Object retVal): !cflow(adviceexecution()) && call(*
*.next(..)) && target(javax.el.CompositeELResolver.FeatureIterator){
                        System.err.println("MATCH");
        }
}

but I provoke an IllegalAccessError...
FeatureIterator is a private inner class but It isn' t a problem in
other similar cases

any Idea on how to avoid it?

thanks,
Mauro
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to