File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,13 @@ export class CodeQLAnalysisError extends Error {
4242}
4343
4444export interface QueriesStatusReport {
45+ /**
46+ * Time taken in ms to run queries for actions (or undefined if this language was not analyzed).
47+ *
48+ * The "builtin" designation is now outdated with the move to CLI config parsing: this is the time
49+ * taken to run _all_ the queries.
50+ */
51+ analyze_builtin_queries_actions_duration_ms ?: number ;
4552 /**
4653 * Time taken in ms to run queries for cpp (or undefined if this language was not analyzed).
4754 *
@@ -98,6 +105,8 @@ export interface QueriesStatusReport {
98105 */
99106 analyze_builtin_queries_swift_duration_ms ?: number ;
100107
108+ /** Time taken in ms to interpret results for actions (or undefined if this language was not analyzed). */
109+ interpret_results_actions_duration_ms ?: number ;
101110 /** Time taken in ms to interpret results for cpp (or undefined if this language was not analyzed). */
102111 interpret_results_cpp_duration_ms ?: number ;
103112 /** Time taken in ms to interpret results for csharp (or undefined if this language was not analyzed). */
You can’t perform that action at this time.
0 commit comments