mirror of
https://github.com/github/codeql.git
synced 2026-04-25 08:45:14 +02: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
|