()
| 170 | } |
| 171 | |
| 172 | private static resetDetectorHints(): void { |
| 173 | DevTools.store.remove(DevTools.KEY_DETECTOR); |
| 174 | ConfigManager.overrides.detectorHints = null; |
| 175 | ConfigManager.handleDetectorHints(); |
| 176 | DevTools.onChange(); |
| 177 | } |
| 178 | |
| 179 | private static applyDetectorHints(text: string): any { |
| 180 | const formatted = formatDetectorHints(parseDetectorHints(text)); |
nothing calls this directly
no test coverage detected