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