Exception: RBS::NoSuperclassFoundError

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:, location:) ⇒ NoSuperclassFoundError

Returns a new instance of NoSuperclassFoundError.



109
110
111
112
113
114
# File 'lib/rbs/errors.rb', line 109

def initialize(type_name:, location:)
  @type_name = type_name
  @location = location

  super "#{Location.to_string location}: Could not find super class: #{type_name}"
end

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



107
108
109
# File 'lib/rbs/errors.rb', line 107

def location
  @location
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



106
107
108
# File 'lib/rbs/errors.rb', line 106

def type_name
  @type_name
end

Class Method Details

.check!(type_name, env:, location:) ⇒ Object



116
117
118
# File 'lib/rbs/errors.rb', line 116

def self.check!(type_name, env:, location:)
  env.class_decls.key?(type_name) or raise new(type_name: type_name, location: location)
end