(test: (c: string) => boolean)
| 25 | } |
| 26 | |
| 27 | nextIs(test: (c: string) => boolean): boolean { |
| 28 | return this.hasMore() && test(this.text[this.pos]) |
| 29 | } |
| 30 | |
| 31 | passIf(test: (c: string) => boolean): boolean { |
| 32 | if (this.nextIs(test)) { |
no test coverage detected