mrdocs::js::Context
An instance of a JavaScript interpreter.
Member Functions
Name |
Description |
|
Constructor. |
|
Destructor. |
|
Copy assignment. |
Description
This class represents a JavaScript interpreter context under which we can create Scope objects to define variables and execute scripts.
A context represents a JavaScript heap where variables can be allocated and will be later garbage collected.
Each context is associated with a single heap allocated with default memory management.
Once the context is created, a Scope in this context can be created to define variables and execute scripts.
See Also
Scope
Created with MrDocs