mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
16 lines
336 B
Plaintext
16 lines
336 B
Plaintext
/**
|
|
* @id py/examples/override-method
|
|
* @name Override of method
|
|
* @description Finds methods that override MyClass.methodName
|
|
* @tags method
|
|
* override
|
|
*/
|
|
|
|
import python
|
|
|
|
from FunctionObject override, FunctionObject base
|
|
where
|
|
base.getQualifiedName() = "MyClass.methodName" and
|
|
override.overrides(base)
|
|
select override
|