From 78fe45e273b38e3770bb738a524c227996248cae Mon Sep 17 00:00:00 2001 From: Jonas Rinke Date: Sat, 25 May 2024 17:04:48 +0200 Subject: [PATCH] Semicolon --- src/tools/rust-analyzer/editors/code/src/debug.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/rust-analyzer/editors/code/src/debug.ts b/src/tools/rust-analyzer/editors/code/src/debug.ts index 3e4446e5668f0..91b07aed01719 100644 --- a/src/tools/rust-analyzer/editors/code/src/debug.ts +++ b/src/tools/rust-analyzer/editors/code/src/debug.ts @@ -195,7 +195,7 @@ function getCCppDebugConfig( cwd: runnable.args.cwd || runnable.args.workspaceRoot || ".", sourceFileMap, environment: Object.entries(env).map(entry => { - return { "name": entry[0], "value": entry[1] } + return { "name": entry[0], "value": entry[1] }; }), // See https://github.com/rust-lang/rust-analyzer/issues/16901#issuecomment-2024486941 osx: {