File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- /* eslint-disable no-bitwise */
21/**
32 * @file AGLint Language Server for VSCode (Node.js).
43 *
@@ -50,14 +49,25 @@ import { loadAglintModule, type LoadedAglint } from './utils/aglint-loader';
5049import { getErrorMessage , getErrorStack } from './utils/error' ;
5150import { isFileUri } from './utils/uri' ;
5251
53- // Create a connection for the server, using Node's IPC as a transport.
54- // Also include all preview / proposed LSP features.
52+ /**
53+ * Create a connection for the server, using Node's IPC as a transport.
54+ * Also include all preview / proposed LSP features.
55+ */
5556const connection = createConnection ( ProposedFeatures . all ) ;
5657
57- // Create a simple text document manager.
58+ /**
59+ * Create a simple text document manager.
60+ */
5861const documents : TextDocuments < TextDocument > = new TextDocuments ( TextDocument ) ;
5962
63+ /**
64+ * Whether the client supports the `workspace/configuration` request.
65+ */
6066let hasConfigurationCapability = false ;
67+
68+ /**
69+ * Whether the client supports the `workspace/workspaceFolders` request.
70+ */
6171let hasWorkspaceFolderCapability = false ;
6272
6373/**
You can’t perform that action at this time.
0 commit comments