(profile: string | null)
| 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)); |
no test coverage detected