mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
253 B
Plaintext
8 lines
253 B
Plaintext
import java
|
|
import semmle.code.java.dataflow.ModulusAnalysis
|
|
import semmle.code.java.dataflow.Bound
|
|
|
|
from Expr e, Bound b, int delta, int mod
|
|
where exprModulus(e, b, delta, mod) and e.getCompilationUnit().fromSource()
|
|
select e, b.toString(), delta, mod
|