Exception: RBS::DuplicatedMethodDefinitionError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/rbs/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type:, method_name:, members:) ⇒ DuplicatedMethodDefinitionError

Returns a new instance of DuplicatedMethodDefinitionError.



179
180
181
182
183
184
185
186
187
188
189
# File 'lib/rbs/errors.rb', line 179

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

#membersObject (readonly)

Returns the value of attribute members.



177
178
179
# File 'lib/rbs/errors.rb', line 177

def members
  @members
end

#method_nameObject (readonly)

Returns the value of attribute method_name.



176
177
178
# File 'lib/rbs/errors.rb', line 176

def method_name
  @method_name
end

#typeObject (readonly)

Returns the value of attribute type.



175
176
177
# File 'lib/rbs/errors.rb', line 175

def type
  @type
end

Instance Method Details

#locationObject



200
201
202
# File 'lib/rbs/errors.rb', line 200

def location
  members[0].location
end

#other_locationsObject



204
205
206
# File 'lib/rbs/errors.rb', line 204

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

#qualified_method_nameObject



191
192
193
194
195
196
197
198
# File 'lib/rbs/errors.rb', line 191

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