fix compile error

This commit is contained in:
Johannes Rieken
2020-08-13 12:49:55 +02:00
parent 2d9ffda246
commit 4398a424d5

View File

@@ -22,6 +22,7 @@ export class InMemoryDocument implements vscode.TextDocument {
isDirty: boolean = false;
isClosed: boolean = false;
eol: vscode.EndOfLine = vscode.EndOfLine.LF;
notebook: undefined;
get fileName(): string {
return this.uri.fsPath;
@@ -66,4 +67,4 @@ export class InMemoryDocument implements vscode.TextDocument {
save(): never {
throw new Error('Method not implemented.');
}
}
}