MCPcopy Index your code
hub / github.com/angular/angular / newIdentifierToken

Function newIdentifierToken

packages/compiler/src/expression_parser/lexer.ts:199–201  ·  view source on GitHub ↗
(index: number, end: number, text: string)

Source from the content-addressed store, hash-verified

197}
198
199function newIdentifierToken(index: number, end: number, text: string): Token {
200 return new Token(index, end, TokenType.Identifier, 0, text);
201}
202
203function newPrivateIdentifierToken(index: number, end: number, text: string): Token {
204 return new Token(index, end, TokenType.PrivateIdentifier, 0, text);

Callers 1

scanIdentifierMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…