mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
178 B
Plaintext
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
|