mirror of
https://github.com/github/codeql.git
synced 2026-03-04 06:36:46 +01:00
10 lines
289 B
Plaintext
10 lines
289 B
Plaintext
|
|
import python
|
|
import semmle.python.pointsto.PointsTo
|
|
import semmle.python.pointsto.PointsToContext
|
|
|
|
from CallNode call, FunctionObject method
|
|
where PointsTo::Test::super_method_call(_, call, _, method)
|
|
select call.getLocation().getStartLine(), call.toString(), method.getQualifiedName()
|
|
|