Exception: RBS::DuplicatedInterfaceMethodDefinitionError

Inherits:
DefinitionError show all
Includes:
DetailedMessageable
Defined in:
lib/rbs/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from DetailedMessageable

#detailed_message

Constructor Details

#initialize(type:, method_name:, member:) ⇒ DuplicatedInterfaceMethodDefinitionError

Returns a new instance of DuplicatedInterfaceMethodDefinitionError.



284
285
286
287
288
289
290
# File 'lib/rbs/errors.rb', line 284

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

  super "#{member.location}: Duplicated method definition: #{qualified_method_name}"
end

Instance Attribute Details

#memberObject (readonly)

Returns the value of attribute member.



282
283
284
# File 'lib/rbs/errors.rb', line 282

def member
  @member
end

#method_nameObject (readonly)

Returns the value of attribute method_name.



281
282
283
# File 'lib/rbs/errors.rb', line 281

def method_name
  @method_name
end

#typeObject (readonly)

Returns the value of attribute type.



280
281
282
# File 'lib/rbs/errors.rb', line 280

def type
  @type
end

Instance Method Details

#locationObject



292
293
294
# File 'lib/rbs/errors.rb', line 292

def location
  member.location
end

#qualified_method_nameObject



296
297
298
299
300
301
302
303
# File 'lib/rbs/errors.rb', line 296

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

#type_nameObject



305
306
307
# File 'lib/rbs/errors.rb', line 305

def type_name
  type.name
end