mirror of
https://github.com/github/codeql.git
synced 2026-05-03 04:39:29 +02:00
11 lines
336 B
Plaintext
11 lines
336 B
Plaintext
import java
|
|
|
|
from Top t
|
|
where t.getAPrimaryQlClass() = "???"
|
|
// TypeBound doesn't extend Top (but probably should); part of Kotlin #6
|
|
and not t instanceof TypeBound
|
|
// XMLLocatable doesn't extend Top (but probably should); part of Kotlin #6
|
|
and not t instanceof XMLLocatable
|
|
select t,
|
|
concat(t.getAPrimaryQlClass(), ",")
|