()
| 16617 | this.syncLineStartToCursor(); |
| 16618 | } |
| 16619 | advanceCursor() { |
| 16620 | this.pos++; |
| 16621 | while (this.chunkIndex < this.chunks.length && this.pos >= this.chunks[this.chunkIndex].length) { |
| 16622 | this.chunkIndex++; |
| 16623 | this.pos = 0; |
| 16624 | } |
| 16625 | } |
| 16626 | syncLineStartToCursor() { |
| 16627 | this.lineChunkIndex = this.chunkIndex; |
| 16628 | this.linePos = this.pos; |
no outgoing calls
no test coverage detected