(config: RuntimeConfigFile)
| 240 | } |
| 241 | |
| 242 | function normalizeDebuggerBackend(config: RuntimeConfigFile): ProjectConfig { |
| 243 | if (config.debuggerBackend === 'lldb') { |
| 244 | const normalized: RuntimeConfigFile = { ...config, debuggerBackend: 'lldb-cli' }; |
| 245 | return toProjectConfig(normalized); |
| 246 | } |
| 247 | return toProjectConfig(config); |
| 248 | } |
| 249 | |
| 250 | function normalizeConfigForPersistence(config: RuntimeConfigFile): ProjectConfig { |
| 251 | let base = normalizeDebuggerBackend(config); |
no test coverage detected