(defaults: SessionDefaults)
| 30 | private revision = 0; |
| 31 | |
| 32 | private cloneDefaults(defaults: SessionDefaults): SessionDefaults { |
| 33 | const copy = { ...defaults }; |
| 34 | if (copy.env) { |
| 35 | copy.env = { ...copy.env }; |
| 36 | } |
| 37 | return copy; |
| 38 | } |
| 39 | |
| 40 | private getProfileLabel(profile: string | null): string { |
| 41 | return profile ?? 'global'; |
no outgoing calls
no test coverage detected