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

Function isSystemDebugStackLocation

src/snapshot-tests/json-normalize.ts:151–158  ·  view source on GitHub ↗
(displayLocation: string)

Source from the content-addressed store, hash-verified

149}
150
151function isSystemDebugStackLocation(displayLocation: string): boolean {
152 return (
153 displayLocation.startsWith('/usr/lib/') ||
154 displayLocation.startsWith('/System/Library/') ||
155 displayLocation.startsWith(`${SIM_RUNTIME_ROOT}/usr/lib/`) ||
156 displayLocation.startsWith(`${SIM_RUNTIME_ROOT}/System/Library/`)
157 );
158}
159
160function normalizeDebugStackDisplayLocation(displayLocation: string): string {
161 const symbolSeparatorIndex = displayLocation.indexOf('`');

Callers 1

normalizeDebugStackFrameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected