(
system: SettingsFile,
user: SettingsFile,
workspace: SettingsFile,
errors: SettingsError[],
)
| 73 | } |
| 74 | export class LoadedSettings { |
| 75 | constructor( |
| 76 | system: SettingsFile, |
| 77 | user: SettingsFile, |
| 78 | workspace: SettingsFile, |
| 79 | errors: SettingsError[], |
| 80 | ) { |
| 81 | this.system = system; |
| 82 | this.user = user; |
| 83 | this.workspace = workspace; |
| 84 | this.errors = errors; |
| 85 | this._merged = this.computeMergedSettings(); |
| 86 | } |
| 87 | |
| 88 | readonly system: SettingsFile; |
| 89 | readonly user: SettingsFile; |
nothing calls this directly
no test coverage detected