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.8.2/lib/rbs/errors.rb, line 275 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.8.2/lib/rbs/errors.rb, line 283 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.8.2/lib/rbs/errors.rb, line 292 def type_name type.name end