In Files

  • rbs-1.0.4/lib/rbs/errors.rb

Parent

Class/Module Index [+]

Quicksearch

RBS::DuplicatedInterfaceMethodDefinitionError

Attributes

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

Public Class Methods

new(type:, method_name:, member:) click to toggle source
 
               # File rbs-1.0.4/lib/rbs/errors.rb, line 217
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-1.0.4/lib/rbs/errors.rb, line 225
def qualified_method_name
  case type
  when Types::ClassSingleton
    "#{type.name}.#{method_name}"
  else
    "#{type.name}##{method_name}"
  end
end