(start: number, str: string)
| 370 | } |
| 371 | |
| 372 | private scanOperator(start: number, str: string): Token { |
| 373 | this.advance(); |
| 374 | return newOperatorToken(start, this.index, str); |
| 375 | } |
| 376 | |
| 377 | private scanOpenBrace(start: number, code: number): Token { |
| 378 | this.braceStack.push('expression'); |
no test coverage detected