(operator: string)
| 72 | } |
| 73 | |
| 74 | isOperator(operator: string): boolean { |
| 75 | return this.type === TokenType.Operator && this.strValue === operator; |
| 76 | } |
| 77 | |
| 78 | isIdentifier(): boolean { |
| 79 | return this.type === TokenType.Identifier; |
no outgoing calls
no test coverage detected