ArrayAccessTree |
A tree node for an array access expression.
|
ArrayLiteralTree |
Represents ECMAScript array literal expression.
|
AssignmentTree |
A tree node for an assignment expression.
|
BinaryTree |
A tree node for a binary expression.
|
BlockTree |
A tree node for a statement block.
|
BreakTree |
A tree node for a 'break' statement.
|
CaseTree |
A tree node for a 'case' in a 'switch' statement.
|
CatchTree |
A tree node for a 'catch' block in a 'try' statement.
|
ClassDeclarationTree |
|
ClassExpressionTree |
|
CompilationUnitTree |
Represents the abstract syntax tree for compilation units (source
files)
|
CompoundAssignmentTree |
A tree node for compound assignment operator.
|
ConditionalExpressionTree |
A tree node for the conditional operator ?
|
ConditionalLoopTree |
A mixin for conditional "loop" statements.
|
ContinueTree |
A tree node for a 'continue' statement.
|
DebuggerTree |
A tree node for a 'debugger' statement.
|
Diagnostic |
Interface for diagnostics from tools.
|
Diagnostic.Kind |
Kinds of diagnostics, for example, error or warning.
|
DiagnosticListener |
Interface for receiving diagnostics from Nashorn parser.
|
DoWhileLoopTree |
A tree node for a 'do' statement.
|
EmptyStatementTree |
A tree node for an empty (skip) statement.
|
ErroneousTree |
A tree node to stand in for a malformed expression.
|
ExportEntryTree |
|
ExpressionStatementTree |
A tree node for an expression statement.
|
ExpressionTree |
A tree node used as the base class for the different types of
expressions.
|
ForInLoopTree |
A tree node for for..in statement
For example:
|
ForLoopTree |
A tree node for a basic 'for' loop statement.
|
ForOfLoopTree |
|
FunctionCallTree |
A tree node for a function call expression.
|
FunctionDeclarationTree |
|
FunctionExpressionTree |
|
GotoTree |
A tree node for a statement that jumps to a target.
|
IdentifierTree |
A tree node for an identifier expression.
|
IfTree |
A tree node for an 'if' statement.
|
ImportEntryTree |
|
InstanceOfTree |
A tree node for an 'instanceof' expression.
|
LabeledStatementTree |
A tree node for a labeled statement.
|
LineMap |
Provides methods to convert between character positions and line numbers
for a compilation unit.
|
LiteralTree |
A tree node for a literal expression.
|
LoopTree |
A mixin for "loop" statements.
|
MemberSelectTree |
A tree node for a member access expression.
|
ModuleTree |
|
NewTree |
A tree node to declare a new instance of a class.
|
ObjectLiteralTree |
Represents ECMAScript object literal expression.
|
ParenthesizedTree |
A tree node for a parenthesized expression.
|
Parser |
Represents nashorn ECMAScript parser instance.
|
PropertyTree |
To represent property setting in an object literal tree.
|
RegExpLiteralTree |
Represents regular expression literal in the source code.
|
ReturnTree |
A tree node for a 'return' statement.
|
SimpleTreeVisitorES5_1 |
A simple implementation of the TreeVisitor for ECMAScript edition 5.1.
|
SpreadTree |
A tree node for spread operator in array elements, function call arguments.
|
StatementTree |
A tree node used as the base class for the different kinds of
statements.
|
SwitchTree |
A tree node for a 'switch' statement.
|
TemplateLiteralTree |
|
ThrowTree |
A tree node for a 'throw' statement.
|
Tree |
Common interface for all nodes in an abstract syntax tree.
|
Tree.Kind |
Enumerates all kinds of trees.
|
TreeVisitor |
A visitor of trees, in the style of the visitor design pattern.
|
TryTree |
A tree node for a 'try' statement.
|
UnaryTree |
A tree node for postfix and unary expressions.
|
VariableTree |
|
WhileLoopTree |
A tree node for a 'while' loop statement.
|
WithTree |
A tree node for a 'with' statement.
|
YieldTree |
|