MCPcopy
hub / github.com/jquery/esprima / isIdentifierName

Method isIdentifierName

src/parser.ts:1168–1173  ·  view source on GitHub ↗
(token)

Source from the content-addressed store, hash-verified

1166 }
1167
1168 isIdentifierName(token): boolean {
1169 return token.type === Token.Identifier ||
1170 token.type === Token.Keyword ||
1171 token.type === Token.BooleanLiteral ||
1172 token.type === Token.NullLiteral;
1173 }
1174
1175 parseIdentifierName(): Node.Identifier {
1176 const node = this.createNode();

Callers 2

parseIdentifierNameMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected