We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83ca012 commit b8ed251Copy full SHA for b8ed251
1 file changed
extensions/ql-vscode/src/codeql-cli/cli.ts
@@ -1482,6 +1482,13 @@ export class CodeQLCliServer implements Disposable {
1482
CliVersionConstraint.CLI_VERSION_WITH_PER_QUERY_EVAL_LOG,
1483
) >= 0,
1484
);
1485
+ await this.app.commands.execute(
1486
+ "setContext",
1487
+ "codeql.supportsQuickEvalCount",
1488
+ newVersion.compare(
1489
+ CliVersionConstraint.CLI_VERSION_WITH_QUICK_EVAL_COUNT,
1490
+ ) >= 0,
1491
+ );
1492
} catch (e) {
1493
this._versionChangedListeners.forEach((listener) =>
1494
listener(undefined),
0 commit comments