mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
261 B
Plaintext
9 lines
261 B
Plaintext
import python
|
|
import semmle.python.ApiGraphs
|
|
|
|
from API::CallNode callNode, string member
|
|
where
|
|
callNode = API::moduleImport("foo").getMember(member).getACall() and
|
|
callNode.getLocation().getFile().getBaseName() = "test_crosstalk.py"
|
|
select callNode, member
|