All files / src/lsp definition.ts

82.85% Statements 29/35
57.14% Branches 4/7
100% Functions 2/2
82.85% Lines 29/35

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 351x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 11x 11x 1x 1x 11x 11x 11x 11x     11x 11x     11x 11x 11x     11x 11x 11x 1x 1x
import * as LServer from "vscode-languageserver-types";
import {IRegistry} from "../_iregistry";
import {ABAPObject} from "../objects/_abap_object";
import {LSPUtils} from "./_lsp_utils";
import {LSPLookup} from "./_lookup";
 
// go to definition
export class Definition {
  private readonly reg: IRegistry;
 
  public constructor(reg: IRegistry) {
    this.reg = reg;
  }
 
  public find(textDocument: LServer.TextDocumentIdentifier,
              position: LServer.Position): LServer.Location | undefined {
 
    const file = LSPUtils.getABAPFile(this.reg, textDocument.uri);
    if (file === undefined) {
      return undefined;
    }
    const obj = this.reg.getObject(file.getObjectType(), file.getObjectName());
    if (!(obj instanceof ABAPObject)) {
      return undefined;
    }
 
    const found = LSPUtils.findCursor(this.reg, {textDocument, position});
    if (found === undefined) {
      return undefined;
    }
 
    return LSPLookup.lookup(found, this.reg, obj)?.definition;
  }
 
}