mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
11 lines
331 B
Plaintext
11 lines
331 B
Plaintext
import java
|
|
|
|
from Top t
|
|
where
|
|
t.getAPrimaryQlClass() = "???" and
|
|
// TypeBound doesn't extend Top (but probably should); part of Kotlin #6
|
|
not t instanceof TypeBound and
|
|
// XMLLocatable doesn't extend Top (but probably should); part of Kotlin #6
|
|
not t instanceof XmlLocatable
|
|
select t, concat(t.getAPrimaryQlClass(), ",")
|