Skip to content

Commit 9617400

Browse files
committed
Fix rebase-induced type error
1 parent ed801a7 commit 9617400

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

extensions/ql-vscode/src/query-results.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ export class CompletedQuery implements QueryWithResults {
8585
return this.config.format;
8686
}
8787

88+
get didRunSuccessfully(): boolean {
89+
return this.result.resultType === messages.QueryResultType.SUCCESS;
90+
}
91+
8892
toString(): string {
8993
return this.interpolate(this.getLabel());
9094
}

0 commit comments

Comments
 (0)