Make things const

This commit is contained in:
Dirk Baeumer
2020-06-11 17:41:06 +02:00
parent 4aa7cde488
commit 808cbb732f

View File

@ -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;