mirror of
https://github.com/github/codeql.git
synced 2026-04-30 03:05:15 +02:00
14 lines
393 B
Plaintext
14 lines
393 B
Plaintext
import java
|
|
|
|
from Top t
|
|
where t.getAPrimaryQlClass() = "???"
|
|
// TypeBound doesn't extend Top (but probably should)
|
|
and not t instanceof TypeBound
|
|
// XMLLocatable doesn't extend Top (but probably should)
|
|
and not t instanceof XMLLocatable
|
|
// Kotlin bug:
|
|
and not t.(Type).toString() = "string"
|
|
select t,
|
|
concat(t.getAPrimaryQlClass(), ","),
|
|
concat(t.getAQlClass(), ",")
|