Files
codeql/python/ql/examples/snippets/override_method.ql
2019-07-26 17:47:11 +02:00

15 lines
305 B
Plaintext

/**
* @name Override of method
* @description Finds methods that overide MyClass.methodName
* @tags method
* override
*/
import python
from FunctionObject override, FunctionObject base
where
base.getQualifiedName() = "MyClass.methodName" and
override.overrides(base)
select override