ArgumentListTree(SourceRange location,
com.google.common.collect.ImmutableList<ParseTree> arguments) |
ArrayLiteralExpressionTree(SourceRange location,
com.google.common.collect.ImmutableList<ParseTree> elements) |
ArrayPatternTree(SourceRange location,
com.google.common.collect.ImmutableList<ParseTree> elements) |
BinaryOperatorTree(SourceRange location,
ParseTree left,
Token operator,
ParseTree right) |
BlockTree(SourceRange location,
com.google.common.collect.ImmutableList<ParseTree> statements) |
BreakStatementTree(SourceRange location,
IdentifierToken name) |
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) |
CommaExpressionTree(SourceRange location,
com.google.common.collect.ImmutableList<ParseTree> expressions) |
Comment(String value,
SourceRange location,
Comment.Type type) |
ConditionalExpressionTree(SourceRange location,
ParseTree condition,
ParseTree left,
ParseTree right) |
ContinueStatementTree(SourceRange location,
IdentifierToken name) |
DebuggerStatementTree(SourceRange location) |
DefaultClauseTree(SourceRange location,
com.google.common.collect.ImmutableList<ParseTree> statements) |
DefaultParameterTree(SourceRange location,
IdentifierExpressionTree identifier,
ParseTree expression) |
DoWhileStatementTree(SourceRange location,
ParseTree body,
ParseTree condition) |
EmptyStatementTree(SourceRange location) |
ExportDeclarationTree(SourceRange location,
boolean isDefault,
boolean isExportAll,
ParseTree declaration,
com.google.common.collect.ImmutableList<ParseTree> exportSpecifierList,
LiteralToken from) |
ExportSpecifierTree(SourceRange location,
IdentifierToken importedName,
IdentifierToken destinationName) |
ExpressionStatementTree(SourceRange location,
ParseTree expression) |
FinallyTree(SourceRange location,
ParseTree block) |
ForInStatementTree(SourceRange location,
ParseTree initializer,
ParseTree collection,
ParseTree body) |
FormalParameterListTree(SourceRange location,
com.google.common.collect.ImmutableList<ParseTree> parameters) |
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) |
GetAccessorTree(SourceRange location,
Token propertyName,
boolean isStatic,
BlockTree body) |
IdentifierExpressionTree(SourceRange location,
IdentifierToken identifierToken) |
IfStatementTree(SourceRange location,
ParseTree condition,
ParseTree ifClause,
ParseTree elseClause) |
ImportDeclarationTree(SourceRange location,
IdentifierToken defaultBindingIndentifier,
com.google.common.collect.ImmutableList<ParseTree> importSpecifierList,
LiteralToken moduleSpecifier) |
ImportSpecifierTree(SourceRange location,
IdentifierToken importedName,
IdentifierToken destinationName) |
LabelledStatementTree(SourceRange location,
IdentifierToken name,
ParseTree statement) |
LiteralExpressionTree(SourceRange location,
Token literalToken) |
MemberExpressionTree(SourceRange location,
ParseTree operand,
IdentifierToken memberName) |
MemberLookupExpressionTree(SourceRange location,
ParseTree operand,
ParseTree memberExpression) |
MissingPrimaryExpressionTree(SourceRange location,
Token nextToken) |
ModuleImportTree(SourceRange location,
IdentifierToken name,
LiteralToken from) |
NewExpressionTree(SourceRange location,
ParseTree operand,
ArgumentListTree arguments) |
NullTree(SourceRange location) |
ObjectLiteralExpressionTree(SourceRange location,
com.google.common.collect.ImmutableList<ParseTree> propertyNameAndValues) |
ObjectPatternFieldTree(SourceRange location,
IdentifierToken identifier,
ParseTree element) |
ObjectPatternTree(SourceRange location,
com.google.common.collect.ImmutableList<ParseTree> fields) |
ParenExpressionTree(SourceRange location,
ParseTree expression) |
ParseTree(ParseTreeType type,
SourceRange location) |
PostfixExpressionTree(SourceRange location,
ParseTree operand,
Token operator) |
ProgramTree(SourceRange location,
com.google.common.collect.ImmutableList<ParseTree> sourceElements,
com.google.common.collect.ImmutableList<Comment> sourceComments) |
PropertyNameAssignmentTree(SourceRange location,
Token name,
ParseTree value) |
RestParameterTree(SourceRange location,
IdentifierToken identifier) |
ReturnStatementTree(SourceRange location,
ParseTree expression) |
SetAccessorTree(SourceRange location,
Token propertyName,
boolean isStatic,
IdentifierToken parameter,
BlockTree body) |
SpreadExpressionTree(SourceRange location,
ParseTree expression) |
SpreadPatternElementTree(SourceRange location,
ParseTree lvalue) |
SuperExpressionTree(SourceRange location) |
SwitchStatementTree(SourceRange location,
ParseTree expression,
com.google.common.collect.ImmutableList<ParseTree> caseClauses) |
ThisExpressionTree(SourceRange location) |
ThrowStatementTree(SourceRange location,
ParseTree value) |
TryStatementTree(SourceRange location,
ParseTree body,
ParseTree catchBlock,
ParseTree finallyBlock) |
UnaryExpressionTree(SourceRange location,
Token operator,
ParseTree operand) |
VariableDeclarationListTree(SourceRange location,
TokenType declarationType,
com.google.common.collect.ImmutableList<VariableDeclarationTree> declarations) |
VariableDeclarationTree(SourceRange location,
ParseTree lvalue,
ParseTree initializer) |
VariableStatementTree(SourceRange location,
VariableDeclarationListTree declarations) |
WhileStatementTree(SourceRange location,
ParseTree condition,
ParseTree body) |
WithStatementTree(SourceRange location,
ParseTree expression,
ParseTree body) |
YieldExpressionTree(SourceRange location,
boolean isYieldFor,
ParseTree expression) |