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

Function refreshResolvedSessionFields

src/utils/config-store.ts:392–406  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

390}
391
392function refreshResolvedSessionFields(): void {
393 storeState.resolved.sessionDefaults = resolveSessionDefaults({
394 overrides: storeState.overrides,
395 fileConfig: storeState.fileConfig,
396 env: storeState.env,
397 });
398 storeState.resolved.sessionDefaultsProfiles = resolveSessionDefaultsProfiles({
399 overrides: storeState.overrides,
400 fileConfig: storeState.fileConfig,
401 });
402 storeState.resolved.activeSessionDefaultsProfile = resolveActiveSessionDefaultsProfile({
403 overrides: storeState.overrides,
404 fileConfig: storeState.fileConfig,
405 });
406}
407
408function getCurrentFileConfig(): ProjectConfig {
409 return storeState.fileConfig ?? { schemaVersion: 1 };

Tested by

no test coverage detected