MCPcopy Index your code
hub / github.com/WebFreak001/code-debug / setPathSubstitutions

Method setPathSubstitutions

src/lldb.ts:111–117  ·  view source on GitHub ↗
(substitutions: { [index: string]: string })

Source from the content-addressed store, hash-verified

109
110 // Add extra commands for source file path substitution in LLDB-specific syntax
111 protected setPathSubstitutions(substitutions: { [index: string]: string }): void {
112 if (substitutions) {
113 Object.keys(substitutions).forEach(source => {
114 this.miDebugger.extraCommands.push("settings append target.source-map " + source + " " + substitutions[source]);
115 });
116 }
117 }
118}
119
120DebugSession.run(LLDBDebugSession);

Callers 2

launchRequestMethod · 0.95
attachRequestMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected