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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 12x 12x 1x 1x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 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;
}
} |