Uses of Class
com.google.javascript.jscomp.parsing.parser.IdentifierToken
-
Packages that use IdentifierToken Package Description com.google.javascript.jscomp.parsing.parser com.google.javascript.jscomp.parsing.parser.trees -
-
Uses of IdentifierToken in com.google.javascript.jscomp.parsing.parser
Methods in com.google.javascript.jscomp.parsing.parser that return IdentifierToken Modifier and Type Method Description IdentifierToken
Token. asIdentifier()
-
Uses of IdentifierToken in com.google.javascript.jscomp.parsing.parser.trees
Fields in com.google.javascript.jscomp.parsing.parser.trees declared as IdentifierToken Modifier and Type Field Description IdentifierToken
TypeAliasTree. alias
IdentifierToken
ImportDeclarationTree. defaultBindingIdentifier
IdentifierToken
ExportSpecifierTree. destinationName
IdentifierToken
ImportSpecifierTree. destinationName
IdentifierToken
IdentifierExpressionTree. identifierToken
IdentifierToken
ExportSpecifierTree. importedName
IdentifierToken
ImportSpecifierTree. importedName
IdentifierToken
MemberExpressionTree. memberName
IdentifierToken
OptionalMemberExpressionTree. memberName
IdentifierToken
BreakStatementTree. name
IdentifierToken
ClassDeclarationTree. name
IdentifierToken
ContinueStatementTree. name
IdentifierToken
EnumDeclarationTree. name
IdentifierToken
FunctionDeclarationTree. name
IdentifierToken
InterfaceDeclarationTree. name
IdentifierToken
LabelledStatementTree. name
IdentifierToken
MemberVariableTree. name
IdentifierToken
ImportDeclarationTree. nameSpaceImportIdentifier
Fields in com.google.javascript.jscomp.parsing.parser.trees with type parameters of type IdentifierToken Modifier and Type Field Description java.util.LinkedHashMap<IdentifierToken,ParseTree>
GenericTypeListTree. generics
Methods in com.google.javascript.jscomp.parsing.parser.trees with parameters of type IdentifierToken Modifier and Type Method Description FunctionDeclarationTree.Builder
FunctionDeclarationTree.Builder. setName(IdentifierToken name)
Optional function name.Constructors in com.google.javascript.jscomp.parsing.parser.trees with parameters of type IdentifierToken Constructor Description BreakStatementTree(SourceRange location, IdentifierToken name)
ClassDeclarationTree(SourceRange location, IdentifierToken name, GenericTypeListTree generics, ParseTree superClass, com.google.common.collect.ImmutableList<ParseTree> interfaces, com.google.common.collect.ImmutableList<ParseTree> elements)
ContinueStatementTree(SourceRange location, IdentifierToken name)
EnumDeclarationTree(SourceRange location, IdentifierToken name, com.google.common.collect.ImmutableList<ParseTree> members)
ExportSpecifierTree(SourceRange location, IdentifierToken importedName, IdentifierToken destinationName)
IdentifierExpressionTree(SourceRange location, IdentifierToken identifierToken)
ImportDeclarationTree(SourceRange location, IdentifierToken defaultBindingIdentifier, com.google.common.collect.ImmutableList<ParseTree> importSpecifierList, IdentifierToken nameSpaceImportIdentifier, LiteralToken moduleSpecifier)
ImportSpecifierTree(SourceRange location, IdentifierToken importedName, IdentifierToken destinationName)
InterfaceDeclarationTree(SourceRange location, IdentifierToken name, GenericTypeListTree generics, com.google.common.collect.ImmutableList<ParseTree> superInterfaces, com.google.common.collect.ImmutableList<ParseTree> elements)
LabelledStatementTree(SourceRange location, IdentifierToken name, ParseTree statement)
MemberExpressionTree(SourceRange location, ParseTree operand, IdentifierToken memberName)
MemberVariableTree(SourceRange location, IdentifierToken name, boolean isStatic, boolean isOptional, TokenType access, ParseTree declaredType)
OptionalMemberExpressionTree(SourceRange location, ParseTree operand, IdentifierToken memberName, boolean isStartOfOptionalChain)
TypeAliasTree(SourceRange location, IdentifierToken alias, ParseTree original)
Constructor parameters in com.google.javascript.jscomp.parsing.parser.trees with type arguments of type IdentifierToken Constructor Description GenericTypeListTree(SourceRange location, java.util.LinkedHashMap<IdentifierToken,ParseTree> generics)
-