diff options
-rw-r--r-- | editors/code/src/commands/syntax_tree.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/syntax_tree.ts b/editors/code/src/commands/syntax_tree.ts index eba511193..91d97f9c4 100644 --- a/editors/code/src/commands/syntax_tree.ts +++ b/editors/code/src/commands/syntax_tree.ts | |||
@@ -98,7 +98,7 @@ class AstInspector implements vscode.HoverProvider, Disposable { | |||
98 | } | 98 | } |
99 | 99 | ||
100 | private onDidCloseTextDocument(doc: vscode.TextDocument) { | 100 | private onDidCloseTextDocument(doc: vscode.TextDocument) { |
101 | if (!!this.rustEditor && doc.uri.toString() === this.rustEditor.document.uri.toString()) { | 101 | if (this.rustEditor && doc.uri.toString() === this.rustEditor.document.uri.toString()) { |
102 | this.setRustEditor(undefined); | 102 | this.setRustEditor(undefined); |
103 | } | 103 | } |
104 | } | 104 | } |