Exception: RBS::InvalidOverloadMethodError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type_name:, method_name:, kind:, members:) ⇒ InvalidOverloadMethodError

Returns a new instance of InvalidOverloadMethodError.



330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
# File 'lib/rbs/errors.rb', line 330

def initialize(type_name:, method_name:, kind:, members:)
  @type_name = type_name
  @method_name = method_name
  @kind = kind
  @members = members

  delimiter = case kind
              when :instance
                "#"
              when :singleton
                "."
              end

  super "#{Location.to_string members[0].location}: Invalid method overloading: #{type_name}#{delimiter}#{method_name}"
end

Instance Attribute Details

#kindObject (readonly)

Returns the value of attribute kind.



327
328
329
# File 'lib/rbs/errors.rb', line 327

def kind
  @kind
end

#membersObject (readonly)

Returns the value of attribute members.



328
329
330
# File 'lib/rbs/errors.rb', line 328

def members
  @members
end

#method_nameObject (readonly)

Returns the value of attribute method_name.



326
327
328
# File 'lib/rbs/errors.rb', line 326

def method_name
  @method_name
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



325
326
327
# File 'lib/rbs/errors.rb', line 325

def type_name
  @type_name
end