mirror of
https://github.com/github/codeql.git
synced 2026-03-03 14:29:49 +01:00
8 lines
265 B
Plaintext
8 lines
265 B
Plaintext
|
|
import python
|
|
import semmle.python.pointsto.PointsTo
|
|
|
|
from ClassObject cls, string name, PyFunctionObject f
|
|
where PointsTo::Types::class_declared_attribute(cls, name, f, _, _)
|
|
select cls.toString(), name, f.toString(), f.getFunction().getLocation().getStartLine()
|