massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-json / node_modules / vscode-languageserver-protocol / lib / common / protocol.implementation.js
1 "use strict";
2 /* --------------------------------------------------------------------------------------------
3  * Copyright (c) Microsoft Corporation. All rights reserved.
4  * Licensed under the MIT License. See License.txt in the project root for license information.
5  * ------------------------------------------------------------------------------------------ */
6 Object.defineProperty(exports, "__esModule", { value: true });
7 exports.ImplementationRequest = void 0;
8 const messages_1 = require("./messages");
9 // @ts-ignore: to avoid inlining LocatioLink as dynamic import
10 let __noDynamicImport;
11 /**
12  * A request to resolve the implementation locations of a symbol at a given text
13  * document position. The request's parameter is of type [TextDocumentPositioParams]
14  * (#TextDocumentPositionParams) the response is of type [Definition](#Definition) or a
15  * Thenable that resolves to such.
16  */
17 var ImplementationRequest;
18 (function (ImplementationRequest) {
19     ImplementationRequest.method = 'textDocument/implementation';
20     ImplementationRequest.type = new messages_1.ProtocolRequestType(ImplementationRequest.method);
21 })(ImplementationRequest = exports.ImplementationRequest || (exports.ImplementationRequest = {}));
22 //# sourceMappingURL=protocol.implementation.js.map