🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
20
node_modules/vscode-languageserver/lib/browser/main.d.ts
generated
vendored
Normal file
20
node_modules/vscode-languageserver/lib/browser/main.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import { MessageReader, MessageWriter, ConnectionStrategy, ConnectionOptions, Connection, Features, _Connection, _ } from '../common/api';
|
||||
export * from 'vscode-languageserver-protocol/browser';
|
||||
export * from '../common/api';
|
||||
/**
|
||||
* Creates a new connection.
|
||||
*
|
||||
* @param factories: The factories for proposed features.
|
||||
* @param reader The message reader to read messages from.
|
||||
* @param writer The message writer to write message to.
|
||||
* @param options An optional connection strategy or connection options to control additional settings
|
||||
*/
|
||||
export declare function createConnection<PConsole = _, PTracer = _, PTelemetry = _, PClient = _, PWindow = _, PWorkspace = _, PLanguages = _>(factories: Features<PConsole, PTracer, PTelemetry, PClient, PWindow, PWorkspace, PLanguages>, reader: MessageReader, writer: MessageWriter, options?: ConnectionStrategy | ConnectionOptions): _Connection<PConsole, PTracer, PTelemetry, PClient, PWindow, PWorkspace, PLanguages>;
|
||||
/**
|
||||
* Creates a new connection.
|
||||
*
|
||||
* @param reader The message reader to read messages from.
|
||||
* @param writer The message writer to write message to.
|
||||
* @param options An optional connection strategy or connection options to control additional settings
|
||||
*/
|
||||
export declare function createConnection(reader: MessageReader, writer: MessageWriter, options?: ConnectionStrategy | ConnectionOptions): Connection;
|
||||
62
node_modules/vscode-languageserver/lib/browser/main.js
generated
vendored
Normal file
62
node_modules/vscode-languageserver/lib/browser/main.js
generated
vendored
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
"use strict";
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
* ------------------------------------------------------------------------------------------ */
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.createConnection = void 0;
|
||||
const api_1 = require("../common/api");
|
||||
__exportStar(require("vscode-languageserver-protocol/browser"), exports);
|
||||
__exportStar(require("../common/api"), exports);
|
||||
let _shutdownReceived = false;
|
||||
const watchDog = {
|
||||
initialize: (_params) => {
|
||||
},
|
||||
get shutdownReceived() {
|
||||
return _shutdownReceived;
|
||||
},
|
||||
set shutdownReceived(value) {
|
||||
_shutdownReceived = value;
|
||||
},
|
||||
exit: (_code) => {
|
||||
}
|
||||
};
|
||||
function createConnection(arg1, arg2, arg3, arg4) {
|
||||
let factories;
|
||||
let reader;
|
||||
let writer;
|
||||
let options;
|
||||
if (arg1 !== void 0 && arg1.__brand === 'features') {
|
||||
factories = arg1;
|
||||
arg1 = arg2;
|
||||
arg2 = arg3;
|
||||
arg3 = arg4;
|
||||
}
|
||||
if (api_1.ConnectionStrategy.is(arg1) || api_1.ConnectionOptions.is(arg1)) {
|
||||
options = arg1;
|
||||
}
|
||||
else {
|
||||
reader = arg1;
|
||||
writer = arg2;
|
||||
options = arg3;
|
||||
}
|
||||
const connectionFactory = (logger) => {
|
||||
return (0, api_1.createProtocolConnection)(reader, writer, logger, options);
|
||||
};
|
||||
return (0, api_1.createConnection)(connectionFactory, watchDog, factories);
|
||||
}
|
||||
exports.createConnection = createConnection;
|
||||
Loading…
Add table
Add a link
Reference in a new issue