@@ -16,9 +16,6 @@ import { PVSC_EXTENSION_ID } from '../common/constants';
1616
1717/**
1818 * Function that opens/show REPL using IW UI.
19- * @param notebookController
20- * @param notebookEditor
21- * @returns notebookEditor
2219 */
2320export async function openInteractiveREPL (
2421 notebookController : NotebookController ,
@@ -46,10 +43,6 @@ export async function openInteractiveREPL(
4643
4744/**
4845 * Function that selects notebook Kernel.
49- * @param notebookEditor
50- * @param notebookControllerId
51- * @param extensionId
52- * @return Promise<void>
5346 */
5447export async function selectNotebookKernel (
5548 notebookEditor : NotebookEditor ,
@@ -65,9 +58,6 @@ export async function selectNotebookKernel(
6558
6659/**
6760 * Function that executes notebook cell given code.
68- * @param notebookDocument
69- * @param code
70- * @return Promise<void>
7161 */
7262export async function executeNotebookCell ( notebookEditor : NotebookEditor , code : string ) : Promise < void > {
7363 const { notebook, replOptions } = notebookEditor ;
@@ -83,8 +73,6 @@ export async function executeNotebookCell(notebookEditor: NotebookEditor, code:
8373/**
8474 * Function that adds cell to notebook.
8575 * This function will only get called when notebook document is defined.
86- * @param code
87- *
8876 */
8977async function addCellToNotebook ( notebookDocument : NotebookDocument , index : number , code : string ) : Promise < void > {
9078 const notebookCellData = new NotebookCellData ( NotebookCellKind . Code , code as string , 'python' ) ;
0 commit comments