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 8a8b1af commit b59f01fCopy full SHA for b59f01f
swift/ql/src/queries/Summary/SummaryStats.ql
@@ -13,7 +13,7 @@ import codeql.swift.security.SensitiveExprs
13
predicate statistic(string what, int value) {
14
what = "Files" and value = count(File f)
15
or
16
- what = "Expressions" and value = count(Expr e | e.getFile().getName() != "")
+ what = "Expressions" and value = count(Expr e | not e.getFile() instanceof UnknownFile)
17
18
what = "Remote flow sources" and value = count(RemoteFlowSource s)
19
0 commit comments