52 lines
2.6 KiB
JavaScript
52 lines
2.6 KiB
JavaScript
"use strict";
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
* ------------------------------------------------------------------------------------------ */
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ImplementationFeature = void 0;
|
|
const vscode_1 = require("vscode");
|
|
const vscode_languageserver_protocol_1 = require("vscode-languageserver-protocol");
|
|
const client_1 = require("./client");
|
|
function ensure(target, key) {
|
|
if (target[key] === void 0) {
|
|
target[key] = {};
|
|
}
|
|
return target[key];
|
|
}
|
|
class ImplementationFeature extends client_1.TextDocumentFeature {
|
|
constructor(client) {
|
|
super(client, vscode_languageserver_protocol_1.ImplementationRequest.type);
|
|
}
|
|
fillClientCapabilities(capabilities) {
|
|
let implementationSupport = ensure(ensure(capabilities, 'textDocument'), 'implementation');
|
|
implementationSupport.dynamicRegistration = true;
|
|
implementationSupport.linkSupport = true;
|
|
}
|
|
initialize(capabilities, documentSelector) {
|
|
let [id, options] = this.getRegistration(documentSelector, capabilities.implementationProvider);
|
|
if (!id || !options) {
|
|
return;
|
|
}
|
|
this.register({ id: id, registerOptions: options });
|
|
}
|
|
registerLanguageProvider(options) {
|
|
const provider = {
|
|
provideImplementation: (document, position, token) => {
|
|
const client = this._client;
|
|
const provideImplementation = (document, position, token) => {
|
|
return client.sendRequest(vscode_languageserver_protocol_1.ImplementationRequest.type, client.code2ProtocolConverter.asTextDocumentPositionParams(document, position), token).then(client.protocol2CodeConverter.asDefinitionResult, (error) => {
|
|
return client.handleFailedRequest(vscode_languageserver_protocol_1.ImplementationRequest.type, error, null);
|
|
});
|
|
};
|
|
const middleware = client.clientOptions.middleware;
|
|
return middleware.provideImplementation
|
|
? middleware.provideImplementation(document, position, token, provideImplementation)
|
|
: provideImplementation(document, position, token);
|
|
}
|
|
};
|
|
return [vscode_1.languages.registerImplementationProvider(options.documentSelector, provider), provider];
|
|
}
|
|
}
|
|
exports.ImplementationFeature = ImplementationFeature;
|
|
//# sourceMappingURL=implementation.js.map
|