Skip to content

Commit 7a8b665

Browse files
committed
Fix missing prop on cell data
1 parent 808266d commit 7a8b665

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/workbench/api/common/extHostTypes.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3080,15 +3080,15 @@ export class NotebookCellData {
30803080
language: string;
30813081
outputs?: NotebookCellOutput[];
30823082
metadata?: NotebookCellMetadata;
3083-
lastExecutionSummary?: vscode.NotebookCellExecutionSummary;
3083+
latestExecutionSummary?: vscode.NotebookCellExecutionSummary;
30843084

3085-
constructor(kind: NotebookCellKind, source: string, language: string, outputs?: NotebookCellOutput[], metadata?: NotebookCellMetadata, lastExecutionSummary?: vscode.NotebookCellExecutionSummary) {
3085+
constructor(kind: NotebookCellKind, source: string, language: string, outputs?: NotebookCellOutput[], metadata?: NotebookCellMetadata, latestExecutionSummary?: vscode.NotebookCellExecutionSummary) {
30863086
this.kind = kind;
30873087
this.source = source;
30883088
this.language = language;
30893089
this.outputs = outputs ?? [];
30903090
this.metadata = metadata;
3091-
this.lastExecutionSummary = lastExecutionSummary;
3091+
this.latestExecutionSummary = latestExecutionSummary;
30923092
}
30933093
}
30943094

0 commit comments

Comments
 (0)