()
| 16613 | return this.chunks[this.chunkIndex][this.pos]; |
| 16614 | } |
| 16615 | consumeCurrentByte() { |
| 16616 | this.advanceCursor(); |
| 16617 | this.syncLineStartToCursor(); |
| 16618 | } |
| 16619 | advanceCursor() { |
| 16620 | this.pos++; |
| 16621 | while (this.chunkIndex < this.chunks.length && this.pos >= this.chunks[this.chunkIndex].length) { |
no test coverage detected