mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
8 lines
282 B
Plaintext
8 lines
282 B
Plaintext
import python
|
|
import semmle.python.pointsto.PointsTo
|
|
import semmle.python.objects.ObjectInternal
|
|
|
|
from ControlFlowNode f, ObjectInternal v, ControlFlowNode x
|
|
where PointsTo::pointsTo(f, _, v, x)
|
|
select f.getLocation().getStartLine(), f.toString(), v, x.getLocation().getStartLine()
|