class RBS::DuplicatedInterfaceMethodDefinitionError

Attributes

member[R]
method_name[R]
type[R]

Public Class Methods

new(type:, method_name:, member:) click to toggle source
Calls superclass method
# File rbs-2.1.0/lib/rbs/errors.rb, line 253
def initialize(type:, method_name:, member:)
  @type = type
  @method_name = method_name
  @member = member

  super "#{member.location}: Duplicated method definition: #{qualified_method_name}"
end

Public Instance Methods

qualified_method_name() click to toggle source
# File rbs-2.1.0/lib/rbs/errors.rb, line 261
def qualified_method_name
  case type
  when Types::ClassSingleton
    "#{type.name}.#{method_name}"
  else
    "#{type.name}##{method_name}"
  end
end
type_name() click to toggle source
# File rbs-2.1.0/lib/rbs/errors.rb, line 270
def type_name
  type.name
end