add hw2
This commit is contained in:
27
node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js
generated
vendored
Normal file
27
node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
"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.DidChangeWorkspaceFoldersNotification = exports.WorkspaceFoldersRequest = void 0;
|
||||
const messages_1 = require("./messages");
|
||||
/**
|
||||
* The `workspace/workspaceFolders` is sent from the server to the client to fetch the open workspace folders.
|
||||
*/
|
||||
var WorkspaceFoldersRequest;
|
||||
(function (WorkspaceFoldersRequest) {
|
||||
WorkspaceFoldersRequest.method = 'workspace/workspaceFolders';
|
||||
WorkspaceFoldersRequest.messageDirection = messages_1.MessageDirection.serverToClient;
|
||||
WorkspaceFoldersRequest.type = new messages_1.ProtocolRequestType0(WorkspaceFoldersRequest.method);
|
||||
})(WorkspaceFoldersRequest || (exports.WorkspaceFoldersRequest = WorkspaceFoldersRequest = {}));
|
||||
/**
|
||||
* The `workspace/didChangeWorkspaceFolders` notification is sent from the client to the server when the workspace
|
||||
* folder configuration changes.
|
||||
*/
|
||||
var DidChangeWorkspaceFoldersNotification;
|
||||
(function (DidChangeWorkspaceFoldersNotification) {
|
||||
DidChangeWorkspaceFoldersNotification.method = 'workspace/didChangeWorkspaceFolders';
|
||||
DidChangeWorkspaceFoldersNotification.messageDirection = messages_1.MessageDirection.clientToServer;
|
||||
DidChangeWorkspaceFoldersNotification.type = new messages_1.ProtocolNotificationType(DidChangeWorkspaceFoldersNotification.method);
|
||||
})(DidChangeWorkspaceFoldersNotification || (exports.DidChangeWorkspaceFoldersNotification = DidChangeWorkspaceFoldersNotification = {}));
|
||||
Reference in New Issue
Block a user