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