Files
codeql/python/ql/test/library-tests/PointsTo/new/SourceEdgeDefinitions.ql
2025-11-26 12:30:31 +00:00

7 lines
268 B
Plaintext

import python
import Util
from SsaSourceVariable var, ControlFlowNode use, BasicBlock pred
where var.hasRefinementEdge(use, pred, _) and not var instanceof SpecialSsaSourceVariable
select locate(pred.getLastNode().getLocation(), "ab"), var.(Variable), use.toString()