We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 047375a commit f31a5c5Copy full SHA for f31a5c5
1 file changed
extensions/ql-vscode/src/codeql-cli/cli.ts
@@ -1455,6 +1455,13 @@ export class CodeQLCliServer implements Disposable {
1455
CliVersionConstraint.CLI_VERSION_WITH_PER_QUERY_EVAL_LOG,
1456
) >= 0,
1457
);
1458
+ await this.app.commands.execute(
1459
+ "setContext",
1460
+ "codeql.supportsQuickEvalCount",
1461
+ newVersion.compare(
1462
+ CliVersionConstraint.CLI_VERSION_WITH_QUICK_EVAL_COUNT,
1463
+ ) >= 0,
1464
+ );
1465
} catch (e) {
1466
this._versionChangedListeners.forEach((listener) =>
1467
listener(undefined),
0 commit comments