We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8475c96 + b98b1d0 commit 5a9150dCopy full SHA for 5a9150d
editors/code/src/commands/apply_source_change.ts
@@ -12,14 +12,14 @@ interface FileSystemEdit {
12
13
export interface SourceChange {
14
label: string;
15
- SourceFileNodeEdits: lc.TextDocumentEdit[];
+ sourceFileEdits: lc.TextDocumentEdit[];
16
fileSystemEdits: FileSystemEdit[];
17
cursorPosition?: lc.TextDocumentPositionParams;
18
}
19
20
export async function handle(change: SourceChange) {
21
const wsEdit = new vscode.WorkspaceEdit();
22
- for (const sourceEdit of change.SourceFileNodeEdits) {
+ for (const sourceEdit of change.sourceFileEdits) {
23
const uri = Server.client.protocol2CodeConverter.asUri(
24
sourceEdit.textDocument.uri
25
);
0 commit comments