rename CellKind to NotebookCellKind

This commit is contained in:
Johannes Rieken
2021-02-12 10:25:12 +01:00
parent 215cd17276
commit 868fb4c39f
9 changed files with 44 additions and 23 deletions

View File

@@ -88,7 +88,7 @@ export class ExtHostCell extends Disposable {
get index() { return that._notebook.getCellIndex(that); },
notebook: that._notebook.notebookDocument,
uri: that.uri,
cellKind: this._cellData.cellKind,
cellKind: extHostTypeConverters.NotebookCellKind.to(this._cellData.cellKind),
document: data.document,
get language() { return data!.document.languageId; },
get outputs() { return that._outputs.map(extHostTypeConverters.NotebookCellOutput.to); },