Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] BCException


On Apr 2, 2009, at 5:39 PM, Andy Clement wrote:

Raise an AspectJ bug. Include the full stack trace - but the problem is likely dependent on the bytecode around the call so if you could attach that, that would be ideal.

I've raised a bug (https://bugs.eclipse.org/bugs/show_bug.cgi? id=270998) and attached my aspect and a core dump. If more is needed, let me know.



The clone() method always causes trouble as it is slightly special. So if you want to work around it you can exclude calls to clone().


I tried this naively with

!call(* java.lang.Object.clone(..))

but that didn't help. I'll look deeper into this tomorrow and see if I can work it out.

Jochen


Back to the top