Files
codeql/python/ql/test/library-tests/dataflow/basic/maximalFlows.ql
2024-04-23 09:40:44 +02:00

10 lines
285 B
Plaintext

import maximalFlowsConfig
from DataFlow::Node source, DataFlow::Node sink
where
source != sink and
MaximalFlowsFlow::flow(source, sink) and
exists(source.getLocation().getFile().getRelativePath()) and
exists(sink.getLocation().getFile().getRelativePath())
select source, sink