1 | ;
|
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.ShowDocumentFeature = void 0;
|
8 | const vscode_languageserver_protocol_1 = require("vscode-languageserver-protocol");
|
9 | const ShowDocumentFeature = (Base) => {
|
10 | return class extends Base {
|
11 | showDocument(params) {
|
12 | return this.connection.sendRequest(vscode_languageserver_protocol_1.ShowDocumentRequest.type, params);
|
13 | }
|
14 | };
|
15 | };
|
16 | exports.ShowDocumentFeature = ShowDocumentFeature;
|