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

Method isKeywordUndefined

packages/compiler/src/expression_parser/lexer.ts:102–104  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

100 }
101
102 isKeywordUndefined(): boolean {
103 return this.type === TokenType.Keyword && this.strValue === 'undefined';
104 }
105
106 isKeywordTrue(): boolean {
107 return this.type === TokenType.Keyword && this.strValue === 'true';

Callers 2

lexer_spec.tsFile · 0.80
parsePrimaryMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected