(
callback: (editBuilder: TextEditorEdit) => void,
_options?: { undoStopBefore: boolean; undoStopAfter: boolean } | undefined
)
| 77 | return undefined; |
| 78 | } |
| 79 | public edit( |
| 80 | callback: (editBuilder: TextEditorEdit) => void, |
| 81 | _options?: { undoStopBefore: boolean; undoStopAfter: boolean } | undefined |
| 82 | ): Thenable<boolean> { |
| 83 | return new Promise((r) => { |
| 84 | const editor = new MockEditorEdit(this._documentManager, this._document); |
| 85 | callback(editor); |
| 86 | r(true); |
| 87 | }); |
| 88 | } |
| 89 | public insertSnippet( |
| 90 | _snippet: SnippetString, |
| 91 | _location?: Range | Position | Range[] | Position[] | undefined, |
no test coverage detected