(location: Position, value: string)
| 36 | } |
| 37 | |
| 38 | public insert(location: Position, value: string): void { |
| 39 | this._documentManager.changeDocument(this._document.fileName, [ |
| 40 | { |
| 41 | range: new Range(location, location), |
| 42 | newText: value |
| 43 | } |
| 44 | ]); |
| 45 | } |
| 46 | public delete(_location: Selection | Range): void { |
| 47 | throw new Error('Method not implemented.'); |
| 48 | } |
no test coverage detected