prefix api object with api-prefix, like apiCell

This commit is contained in:
Johannes Rieken
2021-04-21 15:34:44 +02:00
parent e468d47ed8
commit e2c9703995
8 changed files with 126 additions and 126 deletions

View File

@@ -190,7 +190,7 @@ export class ExtHostNotebookKernels implements ExtHostNotebookKernelsShape {
if (obj) {
obj.onDidChangeSelection.fire({
selected: value,
notebook: this._extHostNotebook.lookupNotebookDocument(URI.revive(uri))!.notebookDocument
notebook: this._extHostNotebook.lookupNotebookDocument(URI.revive(uri))!.apiNotebook
});
}
}
@@ -210,7 +210,7 @@ export class ExtHostNotebookKernels implements ExtHostNotebookKernelsShape {
for (let cellHandle of handles) {
const cell = document.getCell(cellHandle);
if (cell) {
cells.push(cell.cell);
cells.push(cell.apiCell);
}
}