All files / src/lsp _edit.ts

44.64% Statements 25/56
100% Branches 0/0
0% Functions 0/3
44.64% Lines 25/56

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 561x 1x 1x 1x 1x                       1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x             1x 1x                             1x
import * as LServer from "vscode-languageserver-types";
import {IEdit, ITextEdit} from "../edit_helper";
 
export class LSPEdit {
  public static mapEdits(edits: IEdit[]): LServer.WorkspaceEdit {
    const workspace: LServer.WorkspaceEdit = {changes: {}};
    for (const edit of edits) {
      for (const filename in edit) {
        if (workspace.changes![filename] === undefined) {
          workspace.changes![filename] = [];
        }
        workspace.changes![filename] = workspace.changes![filename].concat(this.mapText(edit[filename]));
      }
    }
    return workspace;
  }
/*
  public static mapEditsDocument(edit: IEdit): LServer.WorkspaceEdit {
    const workspace: LServer.WorkspaceEdit = {documentChanges: []};
    for (const filename in edit) {
      const doc: LServer.VersionedTextDocumentIdentifier = {uri: filename, version: 1};
 
      const e = LServer.TextDocumentEdit.create(doc, this.mapText(edit[filename]));
      workspace.documentChanges?.push(e);
    }
    // @ts-ignore
    console.dir(workspace.documentChanges![0].edits[0]);
    // @ts-ignore
    console.dir(workspace.documentChanges![0].edits[1]);
    return workspace;
  }
*/
  public static mapEdit(edit: IEdit): LServer.WorkspaceEdit {
    const workspace: LServer.WorkspaceEdit = {changes: {}};
    for (const filename in edit) {
      workspace.changes![filename] = this.mapText(edit[filename]);
    }
    return workspace;
  }
 
  private static mapText(edit: ITextEdit[]): LServer.TextEdit[] {
    const result: LServer.TextEdit[] = [];

    for (const e of edit) {
      const range = LServer.Range.create(
        e.range.start.getRow() - 1,
        e.range.start.getCol() - 1,
        e.range.end.getRow() - 1,
        e.range.end.getCol() - 1);

      result.push({range, newText: e.newText});
    }

    return result;
  }
}