mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
Removed return
This commit is contained in:
@@ -194,9 +194,10 @@ function getCCppDebugConfig(
|
||||
args: runnable.args.executableArgs,
|
||||
cwd: runnable.args.cwd || runnable.args.workspaceRoot || ".",
|
||||
sourceFileMap,
|
||||
environment: Object.entries(env).map((entry) => {
|
||||
return { name: entry[0], value: entry[1] };
|
||||
}),
|
||||
environment: Object.entries(env).map((entry) => ({
|
||||
name: entry[0],
|
||||
value: entry[1],
|
||||
})),
|
||||
// See https://github.com/rust-lang/rust-analyzer/issues/16901#issuecomment-2024486941
|
||||
osx: {
|
||||
MIMode: "lldb",
|
||||
|
||||
Reference in New Issue
Block a user