We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d9ffda commit 4398a42Copy full SHA for 4398a42
1 file changed
extensions/markdown-language-features/src/test/inMemoryDocument.ts
@@ -22,6 +22,7 @@ export class InMemoryDocument implements vscode.TextDocument {
22
isDirty: boolean = false;
23
isClosed: boolean = false;
24
eol: vscode.EndOfLine = vscode.EndOfLine.LF;
25
+ notebook: undefined;
26
27
get fileName(): string {
28
return this.uri.fsPath;
@@ -66,4 +67,4 @@ export class InMemoryDocument implements vscode.TextDocument {
66
67
save(): never {
68
throw new Error('Method not implemented.');
69
}
-}
70
+}
0 commit comments