mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
8 lines
157 B
Plaintext
8 lines
157 B
Plaintext
import java
|
|
|
|
from EnumType e, string isFinal
|
|
where
|
|
e.fromSource() and
|
|
if e.isFinal() then isFinal = "final" else isFinal = "not final"
|
|
select e, isFinal
|