mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Make things const
This commit is contained in:
@ -8,10 +8,10 @@ import {
|
||||
} from 'vscode-languageserver';
|
||||
|
||||
// Creates the LSP connection
|
||||
let connection = createConnection(ProposedFeatures.all);
|
||||
const connection = createConnection(ProposedFeatures.all);
|
||||
|
||||
// Create a manager for open text documents
|
||||
let documents = new TextDocuments();
|
||||
const documents = new TextDocuments();
|
||||
|
||||
// The workspace folder this server is operating on
|
||||
let workspaceFolder: string | null;
|
||||
|
||||
Reference in New Issue
Block a user