This is an old revision of the document!
AspectScript Join Point Model
Join point | points in the program execution at which… |
---|---|
new | a function or object is created. |
init | a function or object is initialized. |
call | a function is called. |
exec | a function is applied. |
v-read | a local variable is read. |
v-write | a local variable is written. |
p-read | an object property is read. |
p-write | an object property is written. |
event | AS.event(..) is called. |