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

Function isIdentifierPart

packages/compiler/src/expression_parser/lexer.ts:756–758  ·  view source on GitHub ↗
(code: number)

Source from the content-addressed store, hash-verified

754}
755
756function isIdentifierPart(code: number): boolean {
757 return chars.isAsciiLetter(code) || chars.isDigit(code) || code == chars.$_ || code == chars.$$;
758}
759
760function isExponentStart(code: number): boolean {
761 return code == chars.$e || code == chars.$E;

Callers 2

scanIdentifierMethod · 0.85
scanPrivateIdentifierMethod · 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…