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,
ParseTree exception,
ParseTree catchBody) |
ClassDeclarationTree(SourceRange location,
IdentifierToken name,
boolean isExpression,
ParseTree superClass,
com.google.common.collect.ImmutableList<ParseTree> elements) |
ComprehensionForTree(SourceRange location,
ParseTree initializer,
ParseTree collection) |
ComprehensionIfTree(SourceRange location,
ParseTree expression) |
ComprehensionTree(SourceRange location,
ComprehensionTree.ComprehensionType type,
com.google.common.collect.ImmutableList<ParseTree> children,
ParseTree tailExpression) |
ComputedPropertyDefinitionTree(SourceRange location,
ParseTree property,
ParseTree value) |
ComputedPropertyGetterTree(SourceRange location,
ParseTree property,
boolean isStatic,
BlockTree body) |
ComputedPropertyMethodTree(SourceRange location,
ParseTree property,
ParseTree method) |
ComputedPropertySetterTree(SourceRange location,
ParseTree property,
boolean isStatic,
IdentifierToken parameter,
BlockTree body) |
ConditionalExpressionTree(SourceRange location,
ParseTree condition,
ParseTree left,
ParseTree right) |
DefaultParameterTree(SourceRange location,
ParseTree lhs,
ParseTree defaultValue) |
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) |
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) |
SwitchStatementTree(SourceRange location,
ParseTree expression,
com.google.common.collect.ImmutableList<ParseTree> caseClauses) |
TemplateLiteralExpressionTree(SourceRange location,
ParseTree operand,
com.google.common.collect.ImmutableList<ParseTree> elements) |
TemplateSubstitutionTree(SourceRange location,
ParseTree expression) |
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) |