(c: number)
| 373 | } |
| 374 | |
| 375 | private stateInterpolation(c: number): void { |
| 376 | if (c === this.delimiterClose[0]) { |
| 377 | this.state = State.InterpolationClose |
| 378 | this.delimiterIndex = 0 |
| 379 | this.stateInterpolationClose(c) |
| 380 | } |
| 381 | } |
| 382 | |
| 383 | private stateInterpolationClose(c: number) { |
| 384 | if (c === this.delimiterClose[this.delimiterIndex]) { |
no test coverage detected