(path: Path)
| 98 | } |
| 99 | |
| 100 | removeOperation(path: Path) { |
| 101 | const operation = json1.removeOp(path)!; |
| 102 | |
| 103 | this._operationCache.push(operation); |
| 104 | |
| 105 | this._emitStateChange(); |
| 106 | } |
| 107 | |
| 108 | editOperation(path: Path, diff: TDiff[]) { |
| 109 | const operation = json1.editOp(path, 'text-unicode', diff)!; |
no test coverage detected