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

Function isExponentStart

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

Source from the content-addressed store, hash-verified

758}
759
760function isExponentStart(code: number): boolean {
761 return code == chars.$e || code == chars.$E;
762}
763
764function isExponentSign(code: number): boolean {
765 return code == chars.$MINUS || code == chars.$PLUS;

Callers 1

scanNumberMethod · 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…