mirror of
https://github.com/github/codeql.git
synced 2026-01-01 00:27:24 +01:00
8 lines
213 B
Plaintext
8 lines
213 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)
|
|
select e, b.toString(), delta, mod
|