Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09677b0 commit eb9894fCopy full SHA for eb9894f
src/tools/rust-analyzer/editors/code/src/debug.ts
@@ -194,9 +194,10 @@ function getCCppDebugConfig(
194
args: runnable.args.executableArgs,
195
cwd: runnable.args.cwd || runnable.args.workspaceRoot || ".",
196
sourceFileMap,
197
- environment: Object.entries(env).map((entry) => {
198
- return { name: entry[0], value: entry[1] };
199
- }),
+ environment: Object.entries(env).map((entry) => ({
+ name: entry[0],
+ value: entry[1],
200
+ })),
201
// See https://github.com/rust-lang/rust-analyzer/issues/16901#issuecomment-2024486941
202
osx: {
203
MIMode: "lldb",
0 commit comments