mirror of
https://github.com/github/codeql.git
synced 2026-02-27 20:33:42 +01:00
7 lines
159 B
Plaintext
7 lines
159 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
|