()
| 269 | } |
| 270 | |
| 271 | private static resetStaticThemes(): void { |
| 272 | DevTools.store.remove(DevTools.KEY_STATIC); |
| 273 | ConfigManager.overrides.staticThemes = null; |
| 274 | ConfigManager.handleStaticThemes(); |
| 275 | DevTools.onChange(); |
| 276 | } |
| 277 | |
| 278 | private static applyStaticThemes(text: string) { |
| 279 | const formatted = formatStaticThemes(parseStaticThemes(text)); |
nothing calls this directly
no test coverage detected