Modifier and Type | Interface and Description |
---|---|
interface |
ArrayAccessTree
A tree node for an array access expression.
|
interface |
ArrayLiteralTree
Represents ECMAScript array literal expression.
|
interface |
AssignmentTree
A tree node for an assignment expression.
|
interface |
BinaryTree
A tree node for a binary expression.
|
interface |
CompoundAssignmentTree
A tree node for compound assignment operator.
|
interface |
ConditionalExpressionTree
A tree node for the conditional operator ? :.
|
interface |
ErroneousTree
A tree node to stand in for a malformed expression.
|
interface |
FunctionCallTree
A tree node for a function call expression.
|
interface |
FunctionExpressionTree
A tree node for a function expression.
|
interface |
IdentifierTree
A tree node for an identifier expression.
|
interface |
InstanceOfTree
A tree node for an 'instanceof' expression.
|
interface |
LiteralTree
A tree node for a literal expression.
|
interface |
MemberSelectTree
A tree node for a member access expression.
|
interface |
NewTree
A tree node to declare a new instance of a class.
|
interface |
ObjectLiteralTree
Represents ECMAScript object literal expression.
|
interface |
ParenthesizedTree
A tree node for a parenthesized expression.
|
interface |
UnaryTree
A tree node for postfix and unary expressions.
|
Modifier and Type | Method and Description |
---|---|
List<? extends ExpressionTree> |
FunctionCallTree.getArguments() |
List<? extends ExpressionTree> |
ArrayLiteralTree.getElements() |
List<? extends ExpressionTree> |
FunctionDeclarationTree.getParameters() |
List<? extends ExpressionTree> |
FunctionExpressionTree.getParameters() |