mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
305 B
Plaintext
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
|