mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
This allows changing individual tests in the future without having to adjust the expected output of all other tests.
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()
|