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 ParseTreeDynamicImportTree. argumentParseTreeIterRestTree. assignmentTargetParseTreeObjectRestTree. assignmentTargetParseTreeFinallyTree. blockParseTreeDoWhileStatementTree. bodyParseTreeForAwaitOfStatementTree. bodyParseTreeForInStatementTree. bodyParseTreeForOfStatementTree. bodyParseTreeForStatementTree. bodyParseTreeTryStatementTree. bodyParseTreeWhileStatementTree. bodyParseTreeWithStatementTree. bodyParseTreeTryStatementTree. catchBlockParseTreeCatchTree. catchBodyParseTreeComprehensionForTree. collectionParseTreeForAwaitOfStatementTree. collectionParseTreeForInStatementTree. collectionParseTreeForOfStatementTree. collectionParseTreeConditionalExpressionTree. conditionParseTreeDoWhileStatementTree. conditionParseTreeForStatementTree. conditionParseTreeIfStatementTree. conditionParseTreeWhileStatementTree. conditionParseTreeExportDeclarationTree. declarationParseTreeDefaultParameterTree. defaultValueParseTreeIfStatementTree. elseClauseParseTreeCatchTree. exceptionParseTreeAwaitExpressionTree. expressionParseTreeCaseClauseTree. expressionParseTreeComprehensionIfTree. expressionParseTreeExpressionStatementTree. expressionParseTreeIterSpreadTree. expressionParseTreeObjectSpreadTree. expressionParseTreeParenExpressionTree. expressionParseTreeReturnStatementTree. expressionParseTreeSwitchStatementTree. expressionParseTreeTemplateSubstitutionTree. expressionParseTreeWithStatementTree. expressionParseTreeYieldExpressionTree. expressionParseTreeTryStatementTree. finallyBlockParseTreeFunctionDeclarationTree. functionBodyParseTreeIfStatementTree. ifClauseParseTreeForStatementTree. incrementParseTreeComprehensionForTree. initializerParseTreeForAwaitOfStatementTree. initializerParseTreeForInStatementTree. initializerParseTreeForOfStatementTree. initializerParseTreeForStatementTree. initializerParseTreeVariableDeclarationTree. initializerParseTreeBinaryOperatorTree. leftParseTreeConditionalExpressionTree. leftParseTreeDefaultParameterTree. lhsParseTreeVariableDeclarationTree. lvalueParseTreeMemberLookupExpressionTree. memberExpressionParseTreeOptionalMemberLookupExpressionTree. memberExpressionParseTreeComputedPropertyMethodTree. methodParseTreeCallExpressionTree. operandParseTreeMemberExpressionTree. operandParseTreeMemberLookupExpressionTree. operandParseTreeNewExpressionTree. operandParseTreeOptionalCallExpressionTree. operandParseTreeOptionalMemberExpressionTree. operandParseTreeOptionalMemberLookupExpressionTree. operandParseTreeTemplateLiteralExpressionTree. operandParseTreeUnaryExpressionTree. operandParseTreeUpdateExpressionTree. operandParseTreeComputedPropertyDefinitionTree. propertyParseTreeComputedPropertyGetterTree. propertyParseTreeComputedPropertyMethodTree. propertyParseTreeComputedPropertySetterTree. propertyParseTreeBinaryOperatorTree. rightParseTreeConditionalExpressionTree. rightParseTreeLabelledStatementTree. statementParseTreeClassDeclarationTree. superClassParseTreeComprehensionTree. tailExpressionParseTreeComputedPropertyDefinitionTree. valueParseTreePropertyNameAssignmentTree. valueParseTreeThrowStatementTree. valueFields 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. argumentscom.google.common.collect.ImmutableList<ParseTree>SwitchStatementTree. caseClausescom.google.common.collect.ImmutableList<ParseTree>ComprehensionTree. childrencom.google.common.collect.ImmutableList<ParseTree>ArrayLiteralExpressionTree. elementscom.google.common.collect.ImmutableList<ParseTree>ArrayPatternTree. elementscom.google.common.collect.ImmutableList<ParseTree>ClassDeclarationTree. elementscom.google.common.collect.ImmutableList<ParseTree>TemplateLiteralExpressionTree. elementscom.google.common.collect.ImmutableList<ParseTree>ExportDeclarationTree. exportSpecifierListcom.google.common.collect.ImmutableList<ParseTree>CommaExpressionTree. expressionscom.google.common.collect.ImmutableList<ParseTree>ObjectPatternTree. fieldscom.google.common.collect.ImmutableList<ParseTree>ImportDeclarationTree. importSpecifierListcom.google.common.collect.ImmutableList<ParseTree>FormalParameterListTree. parameterscom.google.common.collect.ImmutableList<ParseTree>ObjectLiteralExpressionTree. propertyNameAndValuescom.google.common.collect.ImmutableList<ParseTree>ProgramTree. sourceElementscom.google.common.collect.ImmutableList<ParseTree>BlockTree. statementscom.google.common.collect.ImmutableList<ParseTree>CaseClauseTree. statementscom.google.common.collect.ImmutableList<ParseTree>DefaultClauseTree. statementsMethods in com.google.javascript.jscomp.parsing.parser.trees with parameters of type ParseTree Modifier and Type Method Description static UpdateExpressionTreeUpdateExpressionTree. postfix(SourceRange location, Token operator, ParseTree operand)static UpdateExpressionTreeUpdateExpressionTree. prefix(SourceRange location, Token operator, ParseTree operand)FunctionDeclarationTree.BuilderFunctionDeclarationTree.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)
-