Exception: RBS::InvalidTypeApplicationError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/rbs/errors.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type_name:, args:, params:, location:) ⇒ InvalidTypeApplicationError

Returns a new instance of InvalidTypeApplicationError.



23
24
25
26
27
28
29
# File 'lib/rbs/errors.rb', line 23

def initialize(type_name:, args:, params:, location:)
  @type_name = type_name
  @args = args
  @params = params
  @location = location
  super "#{Location.to_string location}: #{type_name} expects parameters [#{params.join(", ")}], but given args [#{args.join(", ")}]"
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



19
20
21
# File 'lib/rbs/errors.rb', line 19

def args
  @args
end

#locationObject (readonly)

Returns the value of attribute location.



21
22
23
# File 'lib/rbs/errors.rb', line 21

def location
  @location
end

#paramsObject (readonly)

Returns the value of attribute params.



20
21
22
# File 'lib/rbs/errors.rb', line 20

def params
  @params
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



18
19
20
# File 'lib/rbs/errors.rb', line 18

def type_name
  @type_name
end

Class Method Details

.check!(type_name:, args:, params:, location:) ⇒ Object



31
32
33
34
35
# File 'lib/rbs/errors.rb', line 31

def self.check!(type_name:, args:, params:, location:)
  unless args.size == params.size
    raise new(type_name: type_name, args: args, params: params, location: location)
  end
end