(panel?: vscode.WebviewPanel)
| 368 | |
| 369 | // create a new help panel |
| 370 | public makeNewHelpPanel(panel?: vscode.WebviewPanel): HelpPanel { |
| 371 | const helpPanel = new HelpPanel(this.helpPanelOptions, this, panel); |
| 372 | this.helpPanels.unshift(helpPanel); |
| 373 | return helpPanel; |
| 374 | } |
| 375 | |
| 376 | // return the active help panel |
| 377 | // if no help panel is active and fallBack==true, the newest help panel is returned |
no outgoing calls
no test coverage detected