mirror of
https://github.com/github/codeql.git
synced 2026-02-22 18:03:39 +01:00
- General refactoring to fit with the shared data flow implementation. - Move CFG splitting logic into `ControlFlowReachability.qll`. - Replace `isAdditionalFlowStepIntoCall()` with `TaintedParameterNode`. - Redefine `ReturnNode` to be the actual values that are returned, which should yield better path information. - No longer consider overrides in CIL calls.
6 lines
160 B
Plaintext
6 lines
160 B
Plaintext
import csharp
|
|
import semmle.code.csharp.dataflow.internal.DataFlowDispatch
|
|
|
|
from DataFlowCall call, ReturnKind kind
|
|
select call, kind, getAnOutNode(call, kind)
|