Files
codeql/java/ql/test/library-tests/literals/floatLiterals/floatLiterals.ql
Marcono1234 4e1a73f4d9 Java: Rename FloatingPointLiteral to FloatLiteral
"Floating point" refers to both `double` and `float`, and is also used by
the JLS in this way. Therefore the old CodeQL class name for `float` literals
was misleading.
2022-05-16 22:06:04 +02:00

5 lines
100 B
Plaintext

import semmle.code.java.Expr
from FloatLiteral lit
select lit, lit.getValue(), lit.getFloatValue()