mirror of
https://github.com/github/codeql.git
synced 2026-05-02 20:25:13 +02:00
11 lines
298 B
Plaintext
11 lines
298 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
|
|
select t,
|
|
concat(t.getAPrimaryQlClass(), ",")
|