(start: number, end: number, value: string)
| 63 | return this; |
| 64 | } |
| 65 | replaceRight(start: number, end: number, value: string): typeof this { |
| 66 | this._subsume(start, end); |
| 67 | this._edits.splice(this._bisectRight(start), 0, {start, end, value}); |
| 68 | return this; |
| 69 | } |
| 70 | translate(position: Position): Position { |
| 71 | let index = 0; |
| 72 | let ci: Position = {line: 1, column: 0}; |
no test coverage detected