(displayLocation: string)
| 149 | } |
| 150 | |
| 151 | function 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 | |
| 160 | function normalizeDebugStackDisplayLocation(displayLocation: string): string { |
| 161 | const symbolSeparatorIndex = displayLocation.indexOf('`'); |
no outgoing calls
no test coverage detected