mirror of
https://github.com/github/codeql.git
synced 2026-03-30 20:28:15 +02: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()
|