(context: SentryRuntimeContext)
| 232 | } |
| 233 | |
| 234 | export function setSentryRuntimeContext(context: SentryRuntimeContext): void { |
| 235 | pendingRuntimeContext = context; |
| 236 | |
| 237 | if (!initialized || isSentryDisabled() || isTestEnv() || isSentryCaptureSealed()) { |
| 238 | return; |
| 239 | } |
| 240 | |
| 241 | applyRuntimeContext(context); |
| 242 | } |
| 243 | |
| 244 | interface XcodeVersionMetadata { |
| 245 | version?: string; |
no test coverage detected