Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-dev] Only before advice is supported on handler join points (compiler limitation)

The problem is that the end of a handler block cannot be reliably detected in bytecode. So a bytecode based implementation of AspectJ will probably always have this limitation. See previous emails on the user list.

Cheers,
Nick

On Mar 26, 2004, at 6:20 AM, Lendvai Attila wrote:


hi!

i've got the error in the subject. i would like to automatically fill
context information into thrown exceptions with advices, but seems like
i will not do that for now.

and my question: is it a big limitation, or a small one that i can
expect to be gone in a few weeks/months?

thanks,

- 101

before(EntityMetadata.Property property) throwing(MetadataException e):
	this(property)
{
	e.setProperty(property);
}
_______________________________________________
aspectj-dev mailing list
aspectj-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/aspectj-dev




Back to the top