Files
codeql/python/ql/test/experimental/dataflow/basic/global.ql
2023-05-16 14:38:51 +02:00

10 lines
299 B
Plaintext

import allFlowsConfig
from DataFlow::Node source, DataFlow::Node sink
where
source != sink and
exists(AllFlowsConfig cfg | cfg.hasFlow(source, sink)) and
exists(source.getLocation().getFile().getRelativePath()) and
exists(sink.getLocation().getFile().getRelativePath())
select source, sink