Skip to content

Commit 4398a42

Browse files
committed
fix compile error
1 parent 2d9ffda commit 4398a42

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

extensions/markdown-language-features/src/test/inMemoryDocument.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export class InMemoryDocument implements vscode.TextDocument {
2222
isDirty: boolean = false;
2323
isClosed: boolean = false;
2424
eol: vscode.EndOfLine = vscode.EndOfLine.LF;
25+
notebook: undefined;
2526

2627
get fileName(): string {
2728
return this.uri.fsPath;
@@ -66,4 +67,4 @@ export class InMemoryDocument implements vscode.TextDocument {
6667
save(): never {
6768
throw new Error('Method not implemented.');
6869
}
69-
}
70+
}

0 commit comments

Comments
 (0)