Uses of Class
com.google.javascript.jscomp.parsing.parser.trees.ParseTree
-
Packages that use ParseTree Package Description com.google.javascript.jscomp.parsing.parser.trees -
-
Uses of ParseTree in com.google.javascript.jscomp.parsing.parser.trees
Fields in com.google.javascript.jscomp.parsing.parser.trees declared as ParseTree Modifier and Type Field Description ParseTree
DynamicImportTree. argument
ParseTree
IterRestTree. assignmentTarget
ParseTree
ObjectRestTree. assignmentTarget
ParseTree
FinallyTree. block
ParseTree
DoWhileStatementTree. body
ParseTree
ForAwaitOfStatementTree. body
ParseTree
ForInStatementTree. body
ParseTree
ForOfStatementTree. body
ParseTree
ForStatementTree. body
ParseTree
TryStatementTree. body
ParseTree
WhileStatementTree. body
ParseTree
WithStatementTree. body
ParseTree
TryStatementTree. catchBlock
ParseTree
CatchTree. catchBody
ParseTree
ComprehensionForTree. collection
ParseTree
ForAwaitOfStatementTree. collection
ParseTree
ForInStatementTree. collection
ParseTree
ForOfStatementTree. collection
ParseTree
ConditionalExpressionTree. condition
ParseTree
DoWhileStatementTree. condition
ParseTree
ForStatementTree. condition
ParseTree
IfStatementTree. condition
ParseTree
WhileStatementTree. condition
ParseTree
ExportDeclarationTree. declaration
ParseTree
DefaultParameterTree. defaultValue
ParseTree
IfStatementTree. elseClause
ParseTree
CatchTree. exception
ParseTree
AwaitExpressionTree. expression
ParseTree
CaseClauseTree. expression
ParseTree
ComprehensionIfTree. expression
ParseTree
ExpressionStatementTree. expression
ParseTree
IterSpreadTree. expression
ParseTree
ObjectSpreadTree. expression
ParseTree
ParenExpressionTree. expression
ParseTree
ReturnStatementTree. expression
ParseTree
SwitchStatementTree. expression
ParseTree
TemplateSubstitutionTree. expression
ParseTree
WithStatementTree. expression
ParseTree
YieldExpressionTree. expression
ParseTree
TryStatementTree. finallyBlock
ParseTree
FunctionDeclarationTree. functionBody
ParseTree
IfStatementTree. ifClause
ParseTree
ForStatementTree. increment
ParseTree
ComprehensionForTree. initializer
ParseTree
ForAwaitOfStatementTree. initializer
ParseTree
ForInStatementTree. initializer
ParseTree
ForOfStatementTree. initializer
ParseTree
ForStatementTree. initializer
ParseTree
VariableDeclarationTree. initializer
ParseTree
BinaryOperatorTree. left
ParseTree
ConditionalExpressionTree. left
ParseTree
DefaultParameterTree. lhs
ParseTree
VariableDeclarationTree. lvalue
ParseTree
MemberLookupExpressionTree. memberExpression
ParseTree
OptionalMemberLookupExpressionTree. memberExpression
ParseTree
ComputedPropertyMethodTree. method
ParseTree
CallExpressionTree. operand
ParseTree
MemberExpressionTree. operand
ParseTree
MemberLookupExpressionTree. operand
ParseTree
NewExpressionTree. operand
ParseTree
OptionalCallExpressionTree. operand
ParseTree
OptionalMemberExpressionTree. operand
ParseTree
OptionalMemberLookupExpressionTree. operand
ParseTree
TemplateLiteralExpressionTree. operand
ParseTree
UnaryExpressionTree. operand
ParseTree
UpdateExpressionTree. operand
ParseTree
ComputedPropertyDefinitionTree. property
ParseTree
ComputedPropertyGetterTree. property
ParseTree
ComputedPropertyMethodTree. property
ParseTree
ComputedPropertySetterTree. property
ParseTree
BinaryOperatorTree. right
ParseTree
ConditionalExpressionTree. right
ParseTree
LabelledStatementTree. statement
ParseTree
ClassDeclarationTree. superClass
ParseTree
ComprehensionTree. tailExpression
ParseTree
ComputedPropertyDefinitionTree. value
ParseTree
PropertyNameAssignmentTree. value
ParseTree
ThrowStatementTree. value
Fields in com.google.javascript.jscomp.parsing.parser.trees with type parameters of type ParseTree Modifier and Type Field Description com.google.common.collect.ImmutableList<ParseTree>
ArgumentListTree. arguments
com.google.common.collect.ImmutableList<ParseTree>
SwitchStatementTree. caseClauses
com.google.common.collect.ImmutableList<ParseTree>
ComprehensionTree. children
com.google.common.collect.ImmutableList<ParseTree>
ArrayLiteralExpressionTree. elements
com.google.common.collect.ImmutableList<ParseTree>
ArrayPatternTree. elements
com.google.common.collect.ImmutableList<ParseTree>
ClassDeclarationTree. elements
com.google.common.collect.ImmutableList<ParseTree>
TemplateLiteralExpressionTree. elements
com.google.common.collect.ImmutableList<ParseTree>
ExportDeclarationTree. exportSpecifierList
com.google.common.collect.ImmutableList<ParseTree>
CommaExpressionTree. expressions
com.google.common.collect.ImmutableList<ParseTree>
ObjectPatternTree. fields
com.google.common.collect.ImmutableList<ParseTree>
ImportDeclarationTree. importSpecifierList
com.google.common.collect.ImmutableList<ParseTree>
FormalParameterListTree. parameters
com.google.common.collect.ImmutableList<ParseTree>
ObjectLiteralExpressionTree. propertyNameAndValues
com.google.common.collect.ImmutableList<ParseTree>
ProgramTree. sourceElements
com.google.common.collect.ImmutableList<ParseTree>
BlockTree. statements
com.google.common.collect.ImmutableList<ParseTree>
CaseClauseTree. statements
com.google.common.collect.ImmutableList<ParseTree>
DefaultClauseTree. statements
Methods in com.google.javascript.jscomp.parsing.parser.trees with parameters of type ParseTree Modifier and Type Method Description static UpdateExpressionTree
UpdateExpressionTree. postfix(SourceRange location, Token operator, ParseTree operand)
static UpdateExpressionTree
UpdateExpressionTree. prefix(SourceRange location, Token operator, ParseTree operand)
FunctionDeclarationTree.Builder
FunctionDeclarationTree.Builder. setFunctionBody(ParseTree functionBody)
Required function body.Constructor parameters in com.google.javascript.jscomp.parsing.parser.trees with type arguments of type ParseTree Constructor Description ArgumentListTree(SourceRange location, com.google.common.collect.ImmutableList<ParseTree> arguments, boolean hasTrailingComma, com.google.common.collect.ImmutableList<SourcePosition> commaPositions)
ArrayLiteralExpressionTree(SourceRange location, com.google.common.collect.ImmutableList<ParseTree> elements, boolean hasTrailingComma)
ArrayPatternTree(SourceRange location, com.google.common.collect.ImmutableList<ParseTree> elements)
BlockTree(SourceRange location, com.google.common.collect.ImmutableList<ParseTree> statements)
CaseClauseTree(SourceRange location, ParseTree expression, com.google.common.collect.ImmutableList<ParseTree> statements)
ClassDeclarationTree(SourceRange location, IdentifierToken name, ParseTree superClass, com.google.common.collect.ImmutableList<ParseTree> elements)
CommaExpressionTree(SourceRange location, com.google.common.collect.ImmutableList<ParseTree> expressions)
ComprehensionTree(SourceRange location, ComprehensionTree.ComprehensionType type, com.google.common.collect.ImmutableList<ParseTree> children, ParseTree tailExpression)
DefaultClauseTree(SourceRange location, com.google.common.collect.ImmutableList<ParseTree> statements)
ExportDeclarationTree(SourceRange location, boolean isDefault, boolean isExportAll, ParseTree declaration, com.google.common.collect.ImmutableList<ParseTree> exportSpecifierList, LiteralToken from)
FormalParameterListTree(SourceRange location, com.google.common.collect.ImmutableList<ParseTree> parameters, boolean hasTrailingComma, com.google.common.collect.ImmutableList<SourcePosition> commaPositions)
ImportDeclarationTree(SourceRange location, IdentifierToken defaultBindingIdentifier, com.google.common.collect.ImmutableList<ParseTree> importSpecifierList, IdentifierToken nameSpaceImportIdentifier, LiteralToken moduleSpecifier)
ObjectLiteralExpressionTree(SourceRange location, com.google.common.collect.ImmutableList<ParseTree> propertyNameAndValues, boolean hasTrailingComma)
ObjectPatternTree(SourceRange location, com.google.common.collect.ImmutableList<ParseTree> fields)
ProgramTree(SourceRange location, com.google.common.collect.ImmutableList<ParseTree> sourceElements, com.google.common.collect.ImmutableList<Comment> sourceComments)
SwitchStatementTree(SourceRange location, ParseTree expression, com.google.common.collect.ImmutableList<ParseTree> caseClauses)
TemplateLiteralExpressionTree(SourceRange location, ParseTree operand, com.google.common.collect.ImmutableList<ParseTree> elements)
-