(position: number)
| 86 | } |
| 87 | |
| 88 | private isIdentifier(position: number): boolean { |
| 89 | const code = this.text.charCodeAt(position); |
| 90 | return ( |
| 91 | (code > 47 && code < 58) || |
| 92 | (code > 64 && code < 91) || |
| 93 | (code > 96 && code < 123) || |
| 94 | code === CharCode.underscore || |
| 95 | code === CharCode.dollar |
| 96 | ); |
| 97 | } |
| 98 | |
| 99 | isAtIdentifier(): boolean { |
| 100 | this.consumeWhitespaces(); |
no outgoing calls
no test coverage detected