mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
9 lines
238 B
Plaintext
9 lines
238 B
Plaintext
import semmle.code.java.Expr
|
|
|
|
class SrcFloatingPointLiteral extends FloatLiteral {
|
|
SrcFloatingPointLiteral() { this.getCompilationUnit().fromSource() }
|
|
}
|
|
|
|
from SrcFloatingPointLiteral lit
|
|
select lit, lit.getValue(), lit.getFloatValue()
|