Exception: RBS::NoSuperclassFoundError
- Inherits:
-
DefinitionError
- Object
- StandardError
- BaseError
- DefinitionError
- RBS::NoSuperclassFoundError
- Defined in:
- lib/rbs/errors.rb
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#type_name ⇒ Object
readonly
Returns the value of attribute type_name.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(type_name:, location:) ⇒ NoSuperclassFoundError
constructor
A new instance of NoSuperclassFoundError.
Constructor Details
#initialize(type_name:, location:) ⇒ NoSuperclassFoundError
Returns a new instance of NoSuperclassFoundError.
143 144 145 146 147 148 |
# File 'lib/rbs/errors.rb', line 143 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
#location ⇒ Object (readonly)
Returns the value of attribute location.
141 142 143 |
# File 'lib/rbs/errors.rb', line 141 def location @location end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
140 141 142 |
# File 'lib/rbs/errors.rb', line 140 def type_name @type_name end |
Class Method Details
.check!(type_name, env:, location:) ⇒ Object
150 151 152 153 154 155 156 |
# File 'lib/rbs/errors.rb', line 150 def self.check!(type_name, env:, location:) if decl = env.class_decls[type_name] return end raise new(type_name: type_name, location: location) end |