mirror of
https://github.com/github/codeql.git
synced 2026-03-22 15:36:48 +01: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
|