mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
10 lines
252 B
Plaintext
10 lines
252 B
Plaintext
|
|
import python
|
|
import semmle.python.types.Descriptors
|
|
import Util
|
|
|
|
from ClassMethodObject cm, CallNode call
|
|
where call = cm.getACall()
|
|
select locate(call.getLocation(), "lp"), cm.getFunction().toString(), cm.(ControlFlowNode).getLocation().toString()
|
|
|