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

Method getRawForProfile

src/utils/session-store.ts:138–141  ·  view source on GitHub ↗
(profile: string | null)

Source from the content-addressed store, hash-verified

136 }
137
138 private getRawForProfile(profile: string | null): SessionDefaults {
139 const defaults = profile === null ? this.globalDefaults : (this.profiles[profile] ?? {});
140 return this.cloneDefaults(defaults);
141 }
142
143 listProfiles(): string[] {
144 return Object.keys(this.profiles).sort((a, b) => a.localeCompare(b));

Callers 3

setDefaultsForProfileMethod · 0.95
clearForProfileMethod · 0.95
getAllForProfileMethod · 0.95

Calls 1

cloneDefaultsMethod · 0.95

Tested by

no test coverage detected