org.mozilla.javascript |
|
Java Source File Name | Type | Comment |
CompilerEnvirons.java | Class | |
Context.java | Class | This class represents the runtime context of an executing script.
Before executing a script, an instance of Context must be created
and associated with the thread that will be executing the script.
The Context will be used to store information about the executing
of the script such as the call stack. |
DefaultErrorReporter.java | Class | This is the default error reporter for JavaScript. |
ErrorReporter.java | Interface | This is interface defines a protocol for the reporting of
errors during JavaScript translation or execution. |
IRFactory.java | Class | This class allows the creation of nodes, and follows the Factory pattern. |
JavaMembers.java | Class | |
Node.java | Class | This class implements the root of the intermediate representation. |
Parser.java | Class | This class implements the JavaScript parser. |
ScriptOrFnNode.java | Class | |
ScriptRuntime.java | Class | This is the class that implements the runtime. |
Token.java | Class | This class implements the JavaScript scanner. |
TokenStream.java | Class | This class implements the JavaScript scanner. |