mirror of
https://github.com/github/codeql.git
synced 2026-08-02 00:13:00 +02:00
11 lines
226 B
Plaintext
11 lines
226 B
Plaintext
import semmle.code.java.Expr
|
|
|
|
class SrcIntegerLiteral extends IntegerLiteral {
|
|
SrcIntegerLiteral() {
|
|
this.getCompilationUnit().fromSource()
|
|
}
|
|
}
|
|
|
|
from SrcIntegerLiteral lit
|
|
select lit, lit.getValue(), lit.getIntValue()
|