mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
I had missed these originally, since I had just fixed the ones that were highlighted in the actions logs, thinking they had covered everything :(
9 lines
305 B
Plaintext
9 lines
305 B
Plaintext
import allFlowsConfig
|
|
|
|
from AllFlowsFlow::PathNode fromNode, AllFlowsFlow::PathNode toNode
|
|
where
|
|
toNode = fromNode.getASuccessor() and
|
|
exists(fromNode.getNode().getLocation().getFile().getRelativePath()) and
|
|
exists(toNode.getNode().getLocation().getFile().getRelativePath())
|
|
select fromNode, toNode
|