Exception: RBS::DuplicatedInterfaceMethodDefinitionError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of DuplicatedInterfaceMethodDefinitionError.



253
254
255
256
257
258
259
# File 'lib/rbs/errors.rb', line 253

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.



251
252
253
# File 'lib/rbs/errors.rb', line 251

def member
  @member
end

#method_nameObject (readonly)

Returns the value of attribute method_name.



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

def method_name
  @method_name
end

#typeObject (readonly)

Returns the value of attribute type.



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

def type
  @type
end

Instance Method Details

#qualified_method_nameObject



261
262
263
264
265
266
267
268
# File 'lib/rbs/errors.rb', line 261

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

#type_nameObject



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

def type_name
  type.name
end