File tree 1 file changed +9
-0
lines changed
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 {
42
42
}
43
43
44
44
export 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 ;
45
52
/**
46
53
* Time taken in ms to run queries for cpp (or undefined if this language was not analyzed).
47
54
*
@@ -98,6 +105,8 @@ export interface QueriesStatusReport {
98
105
*/
99
106
analyze_builtin_queries_swift_duration_ms ?: number ;
100
107
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 ;
101
110
/** Time taken in ms to interpret results for cpp (or undefined if this language was not analyzed). */
102
111
interpret_results_cpp_duration_ms ?: number ;
103
112
/** 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