(substitutions: { [index: string]: string })
| 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 | |
| 120 | DebugSession.run(LLDBDebugSession); |
no outgoing calls
no test coverage detected