Add CodeLLDB Rust visualization

This commit is contained in:
vsrs 2020-05-07 18:53:14 +03:00
parent 435a17ecd8
commit 23f4859166
2 changed files with 3 additions and 2 deletions

View file

@ -609,4 +609,4 @@
} }
] ]
} }
} }

View file

@ -72,7 +72,8 @@ function getLldbDebugConfig(config: ra.Runnable, executable: string, sourceFileM
program: executable, program: executable,
args: config.extraArgs, args: config.extraArgs,
cwd: config.cwd, cwd: config.cwd,
sourceMap: sourceFileMap sourceMap: sourceFileMap,
sourceLanguages: ["rust"]
}; };
} }