(code: number)
| 754 | } |
| 755 | |
| 756 | function isIdentifierPart(code: number): boolean { |
| 757 | return chars.isAsciiLetter(code) || chars.isDigit(code) || code == chars.$_ || code == chars.$$; |
| 758 | } |
| 759 | |
| 760 | function isExponentStart(code: number): boolean { |
| 761 | return code == chars.$e || code == chars.$E; |
no outgoing calls
no test coverage detected
searching dependent graphs…