From 7a8b665f25aa2f6af673b8f5d137a54a25d63f65 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Mon, 22 Mar 2021 18:30:56 -0700 Subject: [PATCH] Fix missing prop on cell data --- src/vs/workbench/api/common/extHostTypes.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/api/common/extHostTypes.ts b/src/vs/workbench/api/common/extHostTypes.ts index 73138dc99af..233bab94cdb 100644 --- a/src/vs/workbench/api/common/extHostTypes.ts +++ b/src/vs/workbench/api/common/extHostTypes.ts @@ -3080,15 +3080,15 @@ export class NotebookCellData { language: string; outputs?: NotebookCellOutput[]; metadata?: NotebookCellMetadata; - lastExecutionSummary?: vscode.NotebookCellExecutionSummary; + latestExecutionSummary?: vscode.NotebookCellExecutionSummary; - constructor(kind: NotebookCellKind, source: string, language: string, outputs?: NotebookCellOutput[], metadata?: NotebookCellMetadata, lastExecutionSummary?: vscode.NotebookCellExecutionSummary) { + constructor(kind: NotebookCellKind, source: string, language: string, outputs?: NotebookCellOutput[], metadata?: NotebookCellMetadata, latestExecutionSummary?: vscode.NotebookCellExecutionSummary) { this.kind = kind; this.source = source; this.language = language; this.outputs = outputs ?? []; this.metadata = metadata; - this.lastExecutionSummary = lastExecutionSummary; + this.latestExecutionSummary = latestExecutionSummary; } }