({
startIndex,
oldEndIndex,
newEndIndex,
startPosition,
oldEndPosition,
newEndPosition
})
| 19 | /** The end index of the change after the edit. */ |
| 20 | newEndIndex; |
| 21 | constructor({ |
| 22 | startIndex, |
| 23 | oldEndIndex, |
| 24 | newEndIndex, |
| 25 | startPosition, |
| 26 | oldEndPosition, |
| 27 | newEndPosition |
| 28 | }) { |
| 29 | this.startIndex = startIndex >>> 0; |
| 30 | this.oldEndIndex = oldEndIndex >>> 0; |
| 31 | this.newEndIndex = newEndIndex >>> 0; |
| 32 | this.startPosition = startPosition; |
| 33 | this.oldEndPosition = oldEndPosition; |
| 34 | this.newEndPosition = newEndPosition; |
| 35 | } |
| 36 | /** |
| 37 | * Edit a point and index to keep it in-sync with source code that has been edited. |
| 38 | * |
nothing calls this directly
no test coverage detected