NotebookCellRange is now NotebookRange.

This commit is contained in:
rebornix
2021-04-15 13:09:37 -07:00
parent ebb0a7165b
commit 662ea12128
8 changed files with 37 additions and 39 deletions

View File

@@ -199,7 +199,7 @@ export class ExtHostNotebookKernels implements ExtHostNotebookKernelsShape {
const cells: vscode.NotebookCell[] = [];
for (let range of ranges) {
cells.push(...document.notebookDocument.getCells(extHostTypeConverters.NotebookCellRange.to(range)));
cells.push(...document.notebookDocument.getCells(extHostTypeConverters.NotebookRange.to(range)));
}
try {