massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-json / node_modules / vscode-languageserver-protocol / lib / common / protocol.selectionRange.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.SelectionRangeRequest = void 0;
8 const messages_1 = require("./messages");
9 /**
10  * A request to provide selection ranges in a document. The request's
11  * parameter is of type [SelectionRangeParams](#SelectionRangeParams), the
12  * response is of type [SelectionRange[]](#SelectionRange[]) or a Thenable
13  * that resolves to such.
14  */
15 var SelectionRangeRequest;
16 (function (SelectionRangeRequest) {
17     SelectionRangeRequest.method = 'textDocument/selectionRange';
18     SelectionRangeRequest.type = new messages_1.ProtocolRequestType(SelectionRangeRequest.method);
19 })(SelectionRangeRequest = exports.SelectionRangeRequest || (exports.SelectionRangeRequest = {}));
20 //# sourceMappingURL=protocol.selectionRange.js.map