123456789_123456789_123456789_123456789_123456789_

Exception: RBS::DuplicatedMethodDefinitionError

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, DefinitionError, BaseError, StandardError
Instance Chain:
Inherits: RBS::DefinitionError
Defined in: lib/rbs/errors.rb

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(type:, method_name:, members:) ⇒ DuplicatedMethodDefinitionError

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 250

def initialize(type:, method_name:, members:)
  @type = type
  @method_name = method_name
  @members = members

  message = +"#{Location.to_string location}: #{qualified_method_name} has duplicated definitions"
  if members.size > 1
    message << " in #{other_locations.map { |loc| Location.to_string loc }.join(', ')}"
  end
  super message
end

Instance Attribute Details

#members (readonly)

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 248

attr_reader :members

#method_name (readonly)

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 247

attr_reader :method_name

#type (readonly)

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 246

attr_reader :type

Instance Method Details

#location

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 275

def location
  members[0].location
end

#other_locations

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 279

def other_locations
  members.drop(1).map(&:location)
end

#qualified_method_name

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 262

def qualified_method_name
  case type
  when Types::ClassSingleton
    "#{type.name}.#{method_name}"
  else
    "#{type.name}##{method_name}"
  end
end

#type_name

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 271

def type_name
  type.name
end