(isExecute?: boolean)
| 1336 | |
| 1337 | // Shows the temp debug terminal if it exists, otherwise the session terminal. |
| 1338 | public showDebugTerminal(isExecute?: boolean): void { |
| 1339 | if (this.debugSessionProcess) { |
| 1340 | this.debugSessionProcess.showTerminal( |
| 1341 | isExecute && |
| 1342 | !this.sessionSettings.integratedConsole |
| 1343 | .focusConsoleOnExecute, |
| 1344 | ); |
| 1345 | } else { |
| 1346 | this.languageServerProcess?.showTerminal( |
| 1347 | isExecute && |
| 1348 | !this.sessionSettings.integratedConsole |
| 1349 | .focusConsoleOnExecute, |
| 1350 | ); |
| 1351 | } |
| 1352 | } |
| 1353 | |
| 1354 | // Always shows the session terminal. |
| 1355 | private showSessionTerminal(isExecute?: boolean): void { |
no test coverage detected