* Chunk additions/deletions into line-based chunks
()
| 124 | * Chunk additions/deletions into line-based chunks |
| 125 | */ |
| 126 | getLineChunks(): Chunk[] { |
| 127 | let chunker = new LineChunker(); |
| 128 | let i = this.iterateDiffs(); |
| 129 | for (let v = i.next(); v !== undefined; v = i.next()) { |
| 130 | chunker.addDiff(v.range, v.isAddition); |
| 131 | } |
| 132 | return chunker.chunks; |
| 133 | } |
| 134 | |
| 135 | get remote(): string | null { |
| 136 | return this._remote; |
nothing calls this directly
no test coverage detected