mirror of
https://github.com/github/codeql.git
synced 2026-02-12 05:01:06 +01:00
10 lines
203 B
Plaintext
10 lines
203 B
Plaintext
import java
|
|
|
|
from Literal l
|
|
where
|
|
l instanceof IntegerLiteral or
|
|
l instanceof LongLiteral or
|
|
l instanceof FloatingPointLiteral or
|
|
l instanceof DoubleLiteral
|
|
select l, l.getValue(), l.getParent()
|