mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +00:00
36 lines
1.4 KiB
TypeScript
36 lines
1.4 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { createConnection, Connection, Disposable } from 'vscode-languageserver/node';
|
|
import { formatError } from '../utils/runner';
|
|
import { RuntimeEnvironment, startServer } from '../cssServer';
|
|
import { getNodeFSRequestService } from './nodeFs';
|
|
|
|
// Create a connection for the server.
|
|
const connection: Connection = createConnection();
|
|
|
|
console.log = connection.console.log.bind(connection.console);
|
|
console.error = connection.console.error.bind(connection.console);
|
|
|
|
process.on('unhandledRejection', (e: any) => {
|
|
connection.console.error(formatError(`Unhandled exception`, e));
|
|
});
|
|
|
|
const runtime: RuntimeEnvironment = {
|
|
timer: {
|
|
setImmediate(callback: (...args: any[]) => void, ...args: any[]): Disposable {
|
|
const handle = setImmediate(callback, ...args);
|
|
return { dispose: () => clearImmediate(handle) };
|
|
},
|
|
setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): Disposable {
|
|
const handle = setTimeout(callback, ms, ...args);
|
|
return { dispose: () => clearTimeout(handle) };
|
|
}
|
|
},
|
|
file: getNodeFSRequestService()
|
|
};
|
|
|
|
startServer(connection, runtime);
|