Exception: RBS::InvalidOverloadMethodError

Inherits:
StandardError
  • Object
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.



298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
# File 'lib/rbs/errors.rb', line 298

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.



295
296
297
# File 'lib/rbs/errors.rb', line 295

def kind
  @kind
end

#membersObject (readonly)

Returns the value of attribute members.



296
297
298
# File 'lib/rbs/errors.rb', line 296

def members
  @members
end

#method_nameObject (readonly)

Returns the value of attribute method_name.



294
295
296
# File 'lib/rbs/errors.rb', line 294

def method_name
  @method_name
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



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

def type_name
  @type_name
end