mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
9 lines
298 B
Plaintext
9 lines
298 B
Plaintext
import semmle.python.dataflow.new.DataFlow
|
|
|
|
from DataFlow::Node fromNode, DataFlow::Node toNode
|
|
where
|
|
DataFlow::localFlowStep(fromNode, toNode) and
|
|
exists(fromNode.getLocation().getFile().getRelativePath()) and
|
|
exists(toNode.getLocation().getFile().getRelativePath())
|
|
select fromNode, toNode
|