mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
220 B
Plaintext
9 lines
220 B
Plaintext
import semmle.code.java.Expr
|
|
|
|
class SrcIntegerLiteral extends IntegerLiteral {
|
|
SrcIntegerLiteral() { this.getCompilationUnit().fromSource() }
|
|
}
|
|
|
|
from SrcIntegerLiteral lit
|
|
select lit, lit.getValue(), lit.getIntValue()
|