()
| 144 | } |
| 145 | |
| 146 | toNumber(): number { |
| 147 | return this.type === TokenType.Number ? this.numValue : -1; |
| 148 | } |
| 149 | |
| 150 | isTemplateLiteralPart(): this is StringToken { |
| 151 | // Note: Explicit type is needed for Closure. |
no outgoing calls
no test coverage detected