add hw2
This commit is contained in:
22
node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js
generated
vendored
Normal file
22
node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
"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.ShowDocumentRequest = void 0;
|
||||
const messages_1 = require("./messages");
|
||||
/**
|
||||
* A request to show a document. This request might open an
|
||||
* external program depending on the value of the URI to open.
|
||||
* For example a request to open `https://code.visualstudio.com/`
|
||||
* will very likely open the URI in a WEB browser.
|
||||
*
|
||||
* @since 3.16.0
|
||||
*/
|
||||
var ShowDocumentRequest;
|
||||
(function (ShowDocumentRequest) {
|
||||
ShowDocumentRequest.method = 'window/showDocument';
|
||||
ShowDocumentRequest.messageDirection = messages_1.MessageDirection.serverToClient;
|
||||
ShowDocumentRequest.type = new messages_1.ProtocolRequestType(ShowDocumentRequest.method);
|
||||
})(ShowDocumentRequest || (exports.ShowDocumentRequest = ShowDocumentRequest = {}));
|
||||
Reference in New Issue
Block a user