mirror of
https://github.com/github/codeql.git
synced 2026-05-09 23:51:59 +02:00
10 lines
226 B
Plaintext
10 lines
226 B
Plaintext
import java
|
|
|
|
// File classes should only be extracted if we need somewhere to
|
|
// put top-level members.
|
|
from Class c
|
|
where file_class(c)
|
|
and not exists(c.getAMember())
|
|
and none() // TODO: This is currently broken
|
|
select c
|