()
| 18 | constructor(private code: Code, private quickAccess: QuickAccess) { } |
| 19 | |
| 20 | async showProblemsView(): Promise<any> { |
| 21 | await this.quickAccess.runCommand('workbench.panel.markers.view.focus'); |
| 22 | await this.waitForProblemsView(); |
| 23 | } |
| 24 | |
| 25 | async hideProblemsView(): Promise<any> { |
| 26 | await this.quickAccess.runCommand('workbench.actions.view.problems'); |