We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b2d2c commit 7279cc4Copy full SHA for 7279cc4
rust/ql/src/queries/summary/SummaryStats.ql
@@ -37,4 +37,8 @@ where
37
key = "Inconsistencies - CFG" and value = getTotalCfgInconsistencies()
38
or
39
key = "Inconsistencies - data flow" and value = getTotalDataFlowInconsistencies()
40
+ or
41
+ key = "Macro calls - total" and value = count(MacroCall mc)
42
43
+ key = "Macro calls - resolved" and value = count(MacroCall mc | mc.hasExpanded())
44
select key, value
rust/ql/test/query-tests/diagnostics/SummaryStats.expected
@@ -10,3 +10,5 @@
10
| Inconsistencies - data flow | 7 |
11
| Lines of code extracted | 59 |
12
| Lines of user code extracted | 59 |
13
+| Macro calls - resolved | 8 |
14
+| Macro calls - total | 8 |
0 commit comments