mirror of
https://github.com/github/codeql.git
synced 2026-08-02 16:32:58 +02:00
11 lines
249 B
Plaintext
11 lines
249 B
Plaintext
import semmle.code.java.Expr
|
|
|
|
class SrcFloatingPointLiteral extends FloatingPointLiteral {
|
|
SrcFloatingPointLiteral() {
|
|
this.getCompilationUnit().fromSource()
|
|
}
|
|
}
|
|
|
|
from FloatingPointLiteral lit
|
|
select lit, lit.getValue(), lit.getFloatValue()
|