Exception: RBS::InvalidOverloadMethodError

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_name:, method_name:, kind:, members:) ⇒ InvalidOverloadMethodError

Returns a new instance of InvalidOverloadMethodError.



354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
# File 'lib/rbs/errors.rb', line 354

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.



351
352
353
# File 'lib/rbs/errors.rb', line 351

def kind
  @kind
end

#membersObject (readonly)

Returns the value of attribute members.



352
353
354
# File 'lib/rbs/errors.rb', line 352

def members
  @members
end

#method_nameObject (readonly)

Returns the value of attribute method_name.



350
351
352
# File 'lib/rbs/errors.rb', line 350

def method_name
  @method_name
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



349
350
351
# File 'lib/rbs/errors.rb', line 349

def type_name
  @type_name
end

Instance Method Details

#locationObject



370
371
372
# File 'lib/rbs/errors.rb', line 370

def location
  members[0].location
end