|
1 |
| -import * as cp from 'child_process'; |
2 |
| -import * as ls from './languageclient'; |
3 |
| -import * as rpc from 'vscode-jsonrpc'; |
4 |
| -import * as rpcNode from 'vscode-jsonrpc/node'; |
5 |
| -import * as path from 'path'; |
6 |
| -import * as atomIde from 'atom-ide'; |
7 |
| -import * as linter from 'atom/linter'; |
8 |
| -import Convert from './convert.js'; |
9 |
| -import ApplyEditAdapter from './adapters/apply-edit-adapter'; |
10 |
| -import AutocompleteAdapter from './adapters/autocomplete-adapter'; |
11 |
| -import CodeActionAdapter from './adapters/code-action-adapter'; |
12 |
| -import CodeFormatAdapter from './adapters/code-format-adapter'; |
13 |
| -import CodeHighlightAdapter from './adapters/code-highlight-adapter'; |
14 |
| -import DatatipAdapter from './adapters/datatip-adapter'; |
15 |
| -import DefinitionAdapter from './adapters/definition-adapter'; |
16 |
| -import DocumentSyncAdapter from './adapters/document-sync-adapter'; |
17 |
| -import FindReferencesAdapter from './adapters/find-references-adapter'; |
18 |
| -import LinterPushV2Adapter from './adapters/linter-push-v2-adapter'; |
19 |
| -import LoggingConsoleAdapter from './adapters/logging-console-adapter'; |
20 |
| -import NotificationsAdapter from './adapters/notifications-adapter'; |
21 |
| -import OutlineViewAdapter from './adapters/outline-view-adapter'; |
22 |
| -import RenameAdapter from './adapters/rename-adapter'; |
23 |
| -import SignatureHelpAdapter from './adapters/signature-help-adapter'; |
24 |
| -import * as Utils from './utils'; |
25 |
| -import { Socket } from 'net'; |
26 |
| -import { LanguageClientConnection } from './languageclient'; |
27 |
| -import { |
28 |
| - ConsoleLogger, |
29 |
| - FilteredLogger, |
30 |
| - Logger, |
31 |
| -} from './logger'; |
32 |
| -import { |
33 |
| - LanguageServerProcess, |
34 |
| - ServerManager, |
35 |
| - ActiveServer, |
36 |
| -} from './server-manager.js'; |
37 |
| -import { |
38 |
| - Disposable, |
39 |
| - CompositeDisposable, |
40 |
| - Point, |
41 |
| - Range, |
42 |
| - TextEditor, |
43 |
| -} from 'atom'; |
44 |
| -import * as ac from 'atom/autocomplete-plus'; |
45 |
| - |
46 |
| -export { ActiveServer, LanguageClientConnection, LanguageServerProcess }; |
47 |
| -export type ConnectionType = 'stdio' | 'socket' | 'ipc'; |
| 1 | +import * as cp from "child_process" |
| 2 | +import * as ls from "./languageclient" |
| 3 | +import * as rpc from "vscode-jsonrpc" |
| 4 | +import * as rpcNode from "vscode-jsonrpc/node" |
| 5 | +import * as path from "path" |
| 6 | +import * as atomIde from "atom-ide" |
| 7 | +import * as linter from "atom/linter" |
| 8 | +import Convert from "./convert.js" |
| 9 | +import ApplyEditAdapter from "./adapters/apply-edit-adapter" |
| 10 | +import AutocompleteAdapter from "./adapters/autocomplete-adapter" |
| 11 | +import CodeActionAdapter from "./adapters/code-action-adapter" |
| 12 | +import CodeFormatAdapter from "./adapters/code-format-adapter" |
| 13 | +import CodeHighlightAdapter from "./adapters/code-highlight-adapter" |
| 14 | +import DatatipAdapter from "./adapters/datatip-adapter" |
| 15 | +import DefinitionAdapter from "./adapters/definition-adapter" |
| 16 | +import DocumentSyncAdapter from "./adapters/document-sync-adapter" |
| 17 | +import FindReferencesAdapter from "./adapters/find-references-adapter" |
| 18 | +import LinterPushV2Adapter from "./adapters/linter-push-v2-adapter" |
| 19 | +import LoggingConsoleAdapter from "./adapters/logging-console-adapter" |
| 20 | +import NotificationsAdapter from "./adapters/notifications-adapter" |
| 21 | +import OutlineViewAdapter from "./adapters/outline-view-adapter" |
| 22 | +import RenameAdapter from "./adapters/rename-adapter" |
| 23 | +import SignatureHelpAdapter from "./adapters/signature-help-adapter" |
| 24 | +import * as Utils from "./utils" |
| 25 | +import { Socket } from "net" |
| 26 | +import { LanguageClientConnection } from "./languageclient" |
| 27 | +import { ConsoleLogger, FilteredLogger, Logger } from "./logger" |
| 28 | +import { LanguageServerProcess, ServerManager, ActiveServer } from "./server-manager.js" |
| 29 | +import { Disposable, CompositeDisposable, Point, Range, TextEditor } from "atom" |
| 30 | +import * as ac from "atom/autocomplete-plus" |
| 31 | + |
| 32 | +export { ActiveServer, LanguageClientConnection, LanguageServerProcess } |
| 33 | +export type ConnectionType = "stdio" | "socket" | "ipc" |
48 | 34 |
|
49 | 35 | export interface ServerAdapters {
|
50 | 36 | linterPushV2: LinterPushV2Adapter
|
|
0 commit comments