(code: number)
| 60 | ) {} |
| 61 | |
| 62 | isCharacter(code: number): boolean { |
| 63 | return this.type === TokenType.Character && this.numValue === code; |
| 64 | } |
| 65 | |
| 66 | isNumber(): boolean { |
| 67 | return this.type === TokenType.Number; |
no outgoing calls
no test coverage detected