class Steep::Interface::Method

def include_in_chain?(method)

def include_in_chain?(method)
  (method.type_name == type_name &&
    method.name == name &&
    method.types == types &&
    method.attributes == attributes) ||
    super_method&.include_in_chain?(method)
end