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

Function parseFilePathRenderStyle

src/utils/config-store.ts:149–155  ·  view source on GitHub ↗
(value: string | undefined)

Source from the content-addressed store, hash-verified

147}
148
149function parseFilePathRenderStyle(value: string | undefined): FilePathRenderStyle | undefined {
150 if (!value) return undefined;
151 const normalized = value.trim().toLowerCase();
152 if (isFilePathRenderStyle(normalized)) return normalized;
153 log('warn', `Unsupported file path render style '${value}', falling back to defaults.`);
154 return undefined;
155}
156
157function parseDebuggerBackend(value: string | undefined): DebuggerBackendKind | undefined {
158 if (!value) return undefined;

Callers 1

readEnvConfigFunction · 0.85

Calls 2

isFilePathRenderStyleFunction · 0.90
logFunction · 0.90

Tested by

no test coverage detected