The activation object is created when the flow of control first enters an execution context for declared function code, anonymous code or implementation supplied code.
As the activation object is created, it is associated with the execution context. On initialization, it has a property called arguments that cannot be deleted and which refers to an arguments object.
This activation object is then used as the variable object for instantiating all the argument variables. The activation object is discarded when the function returns its result to the caller. The activation object is an internal mechanism and so cannot be passed to the outside world, although members of the activation object may well be accessible to a running script.
See also: | Execution context, function( ... ) ... |
Prev | Home | Next |
ACRONYM object | Up | Active Server Pages |
JavaScript Programmer's Reference, Cliff Wootton Wrox Press (www.wrox.com) Join the Wrox JavaScript forum at p2p.wrox.com Please report problems to support@wrox.com © 2001 Wrox Press. All Rights Reserved. Terms and conditions. |