Files
codeql/swift/ql/consistency-queries/UnresolvedAstNodes.ql
2024-10-31 09:26:14 +01:00

9 lines
178 B
Plaintext

import swift
from AstNode n, string cls
where
cls = n.getAPrimaryQlClass() and
cls.matches("Unresolved%") and
not n.getLocation() instanceof UnknownLocation
select n, cls