mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
Will need subsequent PRs fixing up test failures (due to deprecated methods moving around), but other than that everything should be straight-forward.
8 lines
183 B
Plaintext
8 lines
183 B
Plaintext
import maximalFlowsConfig
|
|
|
|
from DataFlow::Node source, DataFlow::Node sink
|
|
where
|
|
source != sink and
|
|
exists(MaximalFlowsConfig cfg | cfg.hasFlow(source, sink))
|
|
select source, sink
|