Uses of Class
com.google.javascript.jscomp.parsing.parser.Token
Packages that use Token
Package
Description
-
Uses of Token in com.google.javascript.jscomp.parsing.parser
Subclasses of Token in com.google.javascript.jscomp.parsing.parserModifier and TypeClassDescriptionclass
A token representing an identifier.class
A token representing a javascript literal.class
A single or double quoted JavaScript string literal.class
A token representing a javascript template literal substring.Methods in com.google.javascript.jscomp.parsing.parser that return Token -
Uses of Token in com.google.javascript.jscomp.parsing.parser.trees
Fields in com.google.javascript.jscomp.parsing.parser.trees declared as TokenModifier and TypeFieldDescriptionfinal Token
LiteralExpressionTree.literalToken
final Token
PropertyNameAssignmentTree.name
final Token
BinaryOperatorTree.operator
final Token
UnaryExpressionTree.operator
final Token
UpdateExpressionTree.operator
final Token
GetAccessorTree.propertyName
final Token
SetAccessorTree.propertyName
final Token
TemplateLiteralPortionTree.value
Methods in com.google.javascript.jscomp.parsing.parser.trees with parameters of type TokenModifier and TypeMethodDescriptionstatic UpdateExpressionTree
UpdateExpressionTree.postfix
(SourceRange location, Token operator, ParseTree operand) static UpdateExpressionTree
UpdateExpressionTree.prefix
(SourceRange location, Token operator, ParseTree operand) Constructors in com.google.javascript.jscomp.parsing.parser.trees with parameters of type TokenModifierConstructorDescriptionBinaryOperatorTree
(SourceRange location, ParseTree left, Token operator, ParseTree right) GetAccessorTree
(SourceRange location, Token propertyName, boolean isClassMember, boolean isStatic, BlockTree body) LiteralExpressionTree
(SourceRange location, Token literalToken) PropertyNameAssignmentTree
(SourceRange location, Token name, ParseTree value) SetAccessorTree
(SourceRange location, Token propertyName, boolean isClassMember, boolean isStatic, FormalParameterListTree parameter, BlockTree body) TemplateLiteralPortionTree
(SourceRange location, Token value) UnaryExpressionTree
(SourceRange location, Token operator, ParseTree operand) UpdateExpressionTree
(SourceRange location, Token operator, UpdateExpressionTree.OperatorPosition operatorPosition, ParseTree operand)