BinaryOperatorTree(SourceRange location,
ParseTree left,
Token operator,
ParseTree right) |
CallExpressionTree(SourceRange location,
ParseTree operand,
ArgumentListTree arguments) |
CaseClauseTree(SourceRange location,
ParseTree expression,
com.google.common.collect.ImmutableList<ParseTree> statements) |
CatchTree(SourceRange location,
IdentifierToken exceptionName,
ParseTree catchBody) |
ClassDeclarationTree(SourceRange location,
IdentifierToken name,
boolean isExpression,
ParseTree superClass,
com.google.common.collect.ImmutableList<ParseTree> elements) |
ConditionalExpressionTree(SourceRange location,
ParseTree condition,
ParseTree left,
ParseTree right) |
DefaultParameterTree(SourceRange location,
IdentifierExpressionTree identifier,
ParseTree expression) |
DoWhileStatementTree(SourceRange location,
ParseTree body,
ParseTree condition) |
ExportDeclarationTree(SourceRange location,
boolean isDefault,
boolean isExportAll,
ParseTree declaration,
com.google.common.collect.ImmutableList<ParseTree> exportSpecifierList,
LiteralToken from) |
ExpressionStatementTree(SourceRange location,
ParseTree expression) |
FinallyTree(SourceRange location,
ParseTree block) |
ForInStatementTree(SourceRange location,
ParseTree initializer,
ParseTree collection,
ParseTree body) |
ForOfStatementTree(SourceRange location,
ParseTree initializer,
ParseTree collection,
ParseTree body) |
ForStatementTree(SourceRange location,
ParseTree variables,
ParseTree condition,
ParseTree increment,
ParseTree body) |
FunctionDeclarationTree(SourceRange location,
IdentifierToken name,
boolean isStatic,
boolean isGenerator,
FunctionDeclarationTree.Kind kind,
FormalParameterListTree formalParameterList,
ParseTree functionBody) |
IfStatementTree(SourceRange location,
ParseTree condition,
ParseTree ifClause,
ParseTree elseClause) |
LabelledStatementTree(SourceRange location,
IdentifierToken name,
ParseTree statement) |
MemberExpressionTree(SourceRange location,
ParseTree operand,
IdentifierToken memberName) |
MemberLookupExpressionTree(SourceRange location,
ParseTree operand,
ParseTree memberExpression) |
NewExpressionTree(SourceRange location,
ParseTree operand,
ArgumentListTree arguments) |
ObjectPatternFieldTree(SourceRange location,
IdentifierToken identifier,
ParseTree element) |
ParenExpressionTree(SourceRange location,
ParseTree expression) |
PostfixExpressionTree(SourceRange location,
ParseTree operand,
Token operator) |
PropertyNameAssignmentTree(SourceRange location,
Token name,
ParseTree value) |
ReturnStatementTree(SourceRange location,
ParseTree expression) |
SpreadExpressionTree(SourceRange location,
ParseTree expression) |
SpreadPatternElementTree(SourceRange location,
ParseTree lvalue) |
SwitchStatementTree(SourceRange location,
ParseTree expression,
com.google.common.collect.ImmutableList<ParseTree> caseClauses) |
ThrowStatementTree(SourceRange location,
ParseTree value) |
TryStatementTree(SourceRange location,
ParseTree body,
ParseTree catchBlock,
ParseTree finallyBlock) |
UnaryExpressionTree(SourceRange location,
Token operator,
ParseTree operand) |
VariableDeclarationTree(SourceRange location,
ParseTree lvalue,
ParseTree initializer) |
WhileStatementTree(SourceRange location,
ParseTree condition,
ParseTree body) |
WithStatementTree(SourceRange location,
ParseTree expression,
ParseTree body) |
YieldExpressionTree(SourceRange location,
boolean isYieldFor,
ParseTree expression) |