(ch)
| 41 | } |
| 42 | skipToEnd() {this.pos = this.string.length} |
| 43 | skipTo(ch) { |
| 44 | let found = this.string.indexOf(ch, this.pos) |
| 45 | if (found > -1) {this.pos = found; return true} |
| 46 | } |
| 47 | backUp(n) {this.pos -= n} |
| 48 | column() { |
| 49 | if (this.lastColumnPos < this.start) { |
no test coverage detected