Files
codeql/python/ql/test/library-tests/PointsTo/inheritance/Lookup.ql
2020-03-30 11:59:10 +02:00

8 lines
286 B
Plaintext

import python
import semmle.python.pointsto.PointsTo
import semmle.python.objects.ObjectInternal
from ClassObjectInternal cls, string name, PythonFunctionObjectInternal f
where cls.lookup(name, f, _)
select cls.toString(), name, f.toString(), f.getScope().getLocation().getStartLine()