mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
"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.
5 lines
100 B
Plaintext
5 lines
100 B
Plaintext
import semmle.code.java.Expr
|
|
|
|
from FloatLiteral lit
|
|
select lit, lit.getValue(), lit.getFloatValue()
|