Files
codeql/python/ql/test/library-tests/PointsTo/inheritance/Declared.ql
2019-04-26 16:21:47 +01:00

9 lines
306 B
Plaintext

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