We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc7a286 commit e0f16f4Copy full SHA for e0f16f4
swift/ql/src/queries/Summary/SummaryStats.ql
@@ -48,6 +48,10 @@ predicate statistic(string what, string value) {
48
or
49
what = "Lines of code" and value = linesOfCode().toString()
50
51
+ what = "Compiler errors" and value = count(CompilerError d).toString()
52
+ or
53
+ what = "Compiler warnings" and value = count(CompilerWarning d).toString()
54
55
what = "Expressions" and value = count(Expr e | not e.getFile() instanceof UnknownFile).toString()
56
57
what = "Local flow sources" and value = count(LocalFlowSource s).toString()
0 commit comments