mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +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()
|