massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-json / node_modules / vscode-languageserver-protocol / lib / common / protocol.workspaceFolders.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.DidChangeWorkspaceFoldersNotification = exports.WorkspaceFoldersRequest = void 0;
8 const messages_1 = require("./messages");
9 /**
10  * The `workspace/workspaceFolders` is sent from the server to the client to fetch the open workspace folders.
11  */
12 var WorkspaceFoldersRequest;
13 (function (WorkspaceFoldersRequest) {
14     WorkspaceFoldersRequest.type = new messages_1.ProtocolRequestType0('workspace/workspaceFolders');
15 })(WorkspaceFoldersRequest = exports.WorkspaceFoldersRequest || (exports.WorkspaceFoldersRequest = {}));
16 /**
17  * The `workspace/didChangeWorkspaceFolders` notification is sent from the client to the server when the workspace
18  * folder configuration changes.
19  */
20 var DidChangeWorkspaceFoldersNotification;
21 (function (DidChangeWorkspaceFoldersNotification) {
22     DidChangeWorkspaceFoldersNotification.type = new messages_1.ProtocolNotificationType('workspace/didChangeWorkspaceFolders');
23 })(DidChangeWorkspaceFoldersNotification = exports.DidChangeWorkspaceFoldersNotification || (exports.DidChangeWorkspaceFoldersNotification = {}));
24 //# sourceMappingURL=protocol.workspaceFolders.js.map