mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
10 lines
155 B
Plaintext
10 lines
155 B
Plaintext
|
|
import python
|
|
import semmle.python.objects.Modules
|
|
|
|
from Value val, ControlFlowNode f
|
|
where //val = Value::named(name) and
|
|
f.pointsTo(val)
|
|
select f, val
|
|
|