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 2be5ce4 commit f4d4925Copy full SHA for f4d4925
rust/ql/src/queries/summary/Stats.qll
@@ -21,7 +21,9 @@ int getLinesOfUserCode() {
21
/**
22
* Gets a count of the total number of abstract syntax tree inconsistencies in the database.
23
*/
24
-int getTotalAstInconsistencies() { result = sum(AstConsistency::getAstInconsistencyCounts(_)) }
+int getTotalAstInconsistencies() {
25
+ result = sum(string type | | AstConsistency::getAstInconsistencyCounts(type))
26
+}
27
28
29
* Gets a count of the total number of control flow graph inconsistencies in the database.
0 commit comments