Apache JEXL script engine invokes the setter method of the context to consummate an assignment made in script. The context I supply would take over to store the assignment.
a = mylib.hello();
What is the equivalent of a context when a local var is declared?
var b = mylib.goodbye();
In my application design, I need every assignment to be intercepted, and every variable locatable.
What is the assignment mechanism for local vars, and where are they stored? How would I be able to overload/override/intercept that mechanism?