Exception: RBS::NoTypeFoundError
- Inherits:
-
DefinitionError
- Object
- StandardError
- BaseError
- DefinitionError
- RBS::NoTypeFoundError
- Includes:
- DetailedMessageable
- 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:) ⇒ NoTypeFoundError
constructor
A new instance of NoTypeFoundError.
Methods included from DetailedMessageable
Constructor Details
#initialize(type_name:, location:) ⇒ NoTypeFoundError
Returns a new instance of NoTypeFoundError.
154 155 156 157 158 159 |
# File 'lib/rbs/errors.rb', line 154 def initialize(type_name:, location:) @type_name = type_name @location = location super "#{Location.to_string location}: Could not find #{type_name}" end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
152 153 154 |
# File 'lib/rbs/errors.rb', line 152 def location @location end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
151 152 153 |
# File 'lib/rbs/errors.rb', line 151 def type_name @type_name end |
Class Method Details
.check!(type_name, env:, location:) ⇒ Object
161 162 163 164 |
# File 'lib/rbs/errors.rb', line 161 def self.check!(type_name, env:, location:) env.type_name?(type_name) or raise new(type_name: type_name, location: location) type_name end |