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 f827ad8 commit ede72b2Copy full SHA for ede72b2
rust/ql/src/queries/summary/SummaryStats.ql
@@ -41,4 +41,6 @@ where
41
key = "Macro calls - total" and value = count(MacroCall mc)
42
or
43
key = "Macro calls - resolved" and value = count(MacroCall mc | mc.hasExpanded())
44
+ or
45
+ key = "Macro calls - unresolved" and value = count(MacroCall mc | not mc.hasExpanded())
46
select key, value order by key
rust/ql/test/query-tests/diagnostics/SummaryStats.expected
@@ -12,3 +12,4 @@
12
| Lines of user code extracted | 60 |
13
| Macro calls - resolved | 8 |
14
| Macro calls - total | 9 |
15
+| Macro calls - unresolved | 1 |
0 commit comments