MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / normalizeDebuggerBackend

Function normalizeDebuggerBackend

src/utils/project-config.ts:242–248  ·  view source on GitHub ↗
(config: RuntimeConfigFile)

Source from the content-addressed store, hash-verified

240}
241
242function 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
250function normalizeConfigForPersistence(config: RuntimeConfigFile): ProjectConfig {
251 let base = normalizeDebuggerBackend(config);

Callers 2

loadProjectConfigFunction · 0.85

Calls 1

toProjectConfigFunction · 0.85

Tested by

no test coverage detected