Exception: RBS::DuplicatedMethodDefinitionError

Inherits:
DefinitionError 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.



236
237
238
239
240
241
242
243
244
245
246
# File 'lib/rbs/errors.rb', line 236

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.



234
235
236
# File 'lib/rbs/errors.rb', line 234

def members
  @members
end

#method_nameObject (readonly)

Returns the value of attribute method_name.



233
234
235
# File 'lib/rbs/errors.rb', line 233

def method_name
  @method_name
end

#typeObject (readonly)

Returns the value of attribute type.



232
233
234
# File 'lib/rbs/errors.rb', line 232

def type
  @type
end

Instance Method Details

#locationObject



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

def location
  members[0].location
end

#other_locationsObject



265
266
267
# File 'lib/rbs/errors.rb', line 265

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

#qualified_method_nameObject



248
249
250
251
252
253
254
255
# File 'lib/rbs/errors.rb', line 248

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

#type_nameObject



257
258
259
# File 'lib/rbs/errors.rb', line 257

def type_name
  type.name
end