vscode: refactor levels of code nesting and string literals quotes

This commit is contained in:
Veetaha 2020-02-09 13:36:36 +02:00
parent a3e3fba7bf
commit 3159e87c49

View file

@ -71,9 +71,10 @@ export async function ensureLanguageServerBinary(
if (isBinaryAvailable(langServerSource.path)) { if (isBinaryAvailable(langServerSource.path)) {
return langServerSource.path; return langServerSource.path;
} }
vscode.window.showErrorMessage( vscode.window.showErrorMessage(
`Unable to run ${langServerSource.path} binary. ` + `Unable to run ${langServerSource.path} binary. ` +
"To use the pre-built language server, set `rust-analyzer.raLspServerPath` " + `To use the pre-built language server, set "rust-analyzer.raLspServerPath" ` +
"value to `null` or remove it from the settings to use it by default." "value to `null` or remove it from the settings to use it by default."
); );
return null; return null;
@ -81,7 +82,10 @@ export async function ensureLanguageServerBinary(
case BinarySource.Type.GithubRelease: { case BinarySource.Type.GithubRelease: {
const prebuiltBinaryPath = path.join(langServerSource.dir, langServerSource.file); const prebuiltBinaryPath = path.join(langServerSource.dir, langServerSource.file);
if (!isBinaryAvailable(prebuiltBinaryPath)) { if (isBinaryAvailable(prebuiltBinaryPath)) {
return prebuiltBinaryPath;
}
const userResponse = await vscode.window.showInformationMessage( const userResponse = await vscode.window.showInformationMessage(
"Language server binary for rust-analyzer was not found. " + "Language server binary for rust-analyzer was not found. " +
"Do you want to download it now?", "Do you want to download it now?",
@ -108,7 +112,7 @@ export async function ensureLanguageServerBinary(
vscode.window.showInformationMessage( vscode.window.showInformationMessage(
"Rust analyzer language server was successfully installed 🦀" "Rust analyzer language server was successfully installed 🦀"
); );
}
return prebuiltBinaryPath; return prebuiltBinaryPath;
} }
} }