class Steep::Interface::Method

def ==(other)

def ==(other)
  other.is_a?(Method) &&
    other.type_name == type_name &&
    other.name == name &&
    other.types == types &&
    other.super_method == super_method &&
    other.attributes == attributes
end