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 27dca74 commit 6ebc615Copy full SHA for 6ebc615
rust/ql/src/queries/summary/SummaryStats.ql
@@ -11,6 +11,8 @@ import Stats
11
12
from string key, string value
13
where
14
+ key = "Extracted files" and value = count(File f | exists(f.getRelativePath())).toString()
15
+ or
16
key = "Lines of code" and value = getLinesOfCode().toString()
17
or
18
key = "Lines of user code" and value = getLinesOfUserCode().toString()
rust/ql/test/query-tests/diagnostics/SummaryStats.expected
@@ -1,2 +1,3 @@
1
+| Extracted files | 6 |
2
| Lines of code | 24 |
3
| Lines of user code | 24 |
0 commit comments