()
| 95 | private readonly builtinService: IBuiltinService; |
| 96 | |
| 97 | constructor() { |
| 98 | super(); |
| 99 | this.editorService = container.resolve(EditorService); |
| 100 | this.localeService = container.resolve(LocaleService); |
| 101 | this.colorThemeService = container.resolve(ColorThemeService); |
| 102 | this.builtinService = container.resolve(BuiltinService); |
| 103 | this.settings = this.getBuiltInSettings(); |
| 104 | } |
| 105 | |
| 106 | private getBuiltInSettings(): ISettings { |
| 107 | const editorOptions = this.editorService.getState().editorOptions; |
nothing calls this directly
no test coverage detected