Files
codeql/python/ql/test/library-tests/PointsTo/super/SuperMethodCall.ql
2018-11-19 15:15:54 +00:00

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()