(
cells: vscode.NotebookCell[],
_notebook: vscode.NotebookDocument,
_controller: vscode.NotebookController
)
| 25 | } |
| 26 | |
| 27 | private async _execute( |
| 28 | cells: vscode.NotebookCell[], |
| 29 | _notebook: vscode.NotebookDocument, |
| 30 | _controller: vscode.NotebookController |
| 31 | ): Promise<void> { |
| 32 | for (let cell of cells) { |
| 33 | // run each cell sequentially, awaiting its completion |
| 34 | await this.doExecution(cell); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | dispose() { |
| 39 | globalConnPool.pool?.end(); |
nothing calls this directly
no test coverage detected