mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
9 lines
312 B
Plaintext
9 lines
312 B
Plaintext
import csharp
|
|
import semmle.code.csharp.dataflow.internal.rangeanalysis.RangeUtils
|
|
import semmle.code.csharp.dataflow.ModulusAnalysis
|
|
import semmle.code.csharp.dataflow.Bound
|
|
|
|
from ControlFlow::Nodes::ExprNode e, Bound b, int delta, int mod
|
|
where exprModulus(e, b, delta, mod)
|
|
select e, b.toString(), delta, mod
|