MCPcopy Create free account
hub / github.com/cmoog/vscode-sql-notebook / _execute

Method _execute

src/controller.ts:27–36  ·  view source on GitHub ↗
(
    cells: vscode.NotebookCell[],
    _notebook: vscode.NotebookDocument,
    _controller: vscode.NotebookController
  )

Source from the content-addressed store, hash-verified

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();

Callers

nothing calls this directly

Calls 1

doExecutionMethod · 0.95

Tested by

no test coverage detected