(match)
| 30 | if (ok) {++this.pos; return ch} |
| 31 | } |
| 32 | eatWhile(match) { |
| 33 | let start = this.pos |
| 34 | while (this.eat(match)){} |
| 35 | return this.pos > start |
| 36 | } |
| 37 | eatSpace() { |
| 38 | let start = this.pos |
| 39 | while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos |
no test coverage detected