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

Function newKeywordToken

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

Source from the content-addressed store, hash-verified

205}
206
207function newKeywordToken(index: number, end: number, text: string): Token {
208 return new Token(index, end, TokenType.Keyword, 0, text);
209}
210
211function newOperatorToken(index: number, end: number, text: string): Token {
212 return new Token(index, end, TokenType.Operator, 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…