(operation: string)
| 410 | } |
| 411 | |
| 412 | function assertSupportedEditOperation(operation: string) { |
| 413 | if (operation !== 'insertText' && operation !== 'modifyRange') { |
| 414 | throw ('Operation: ' + operation + ' not supported by VSCode-R API'); |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | function normaliseEditText(text: string, editLocation: any, |
| 419 | operation: string, targetDocument: TextDocument) { |
no outgoing calls
no test coverage detected