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

Function newOperatorToken

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

Source from the content-addressed store, hash-verified

209}
210
211function newOperatorToken(index: number, end: number, text: string): Token {
212 return new Token(index, end, TokenType.Operator, 0, text);
213}
214
215function newNumberToken(index: number, end: number, n: number): Token {
216 return new Token(index, end, TokenType.Number, n, '');

Callers 7

scanTokenMethod · 0.85
scanOperatorMethod · 0.85
scanComplexOperatorMethod · 0.85
scanEqualsMethod · 0.85
scanQuestionMethod · 0.85
scanStarMethod · 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…