()
| 68 | } |
| 69 | |
| 70 | isString(): this is StringToken { |
| 71 | return this.type === TokenType.String; |
| 72 | } |
| 73 | |
| 74 | isOperator(operator: string): boolean { |
| 75 | return this.type === TokenType.Operator && this.strValue === operator; |
no outgoing calls
no test coverage detected