Exception: RBS::NoSuperclassFoundError

Inherits:
DefinitionError 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.



171
172
173
174
175
176
# File 'lib/rbs/errors.rb', line 171

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.



169
170
171
# File 'lib/rbs/errors.rb', line 169

def location
  @location
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



168
169
170
# File 'lib/rbs/errors.rb', line 168

def type_name
  @type_name
end

Class Method Details

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



178
179
180
181
182
183
184
# File 'lib/rbs/errors.rb', line 178

def self.check!(type_name, env:, location:)
  if env.module_name?(type_name)
    return
  end

  raise new(type_name: type_name, location: location)
end