Exception: RBS::NoSelfTypeFoundError
- Inherits:
-
DefinitionError
- Object
- StandardError
- BaseError
- DefinitionError
- RBS::NoSelfTypeFoundError
- 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:) ⇒ NoSelfTypeFoundError
constructor
A new instance of NoSelfTypeFoundError.
Methods included from DetailedMessageable
Constructor Details
#initialize(type_name:, location:) ⇒ NoSelfTypeFoundError
Returns a new instance of NoSelfTypeFoundError.
201 202 203 204 205 206 |
# File 'lib/rbs/errors.rb', line 201 def initialize(type_name:, location:) @type_name = type_name @location = location super "#{Location.to_string location}: Could not find self type: #{type_name}" end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
199 200 201 |
# File 'lib/rbs/errors.rb', line 199 def location @location end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
198 199 200 |
# File 'lib/rbs/errors.rb', line 198 def type_name @type_name end |
Class Method Details
.check!(self_type, env:) ⇒ Object
208 209 210 211 |
# File 'lib/rbs/errors.rb', line 208 def self.check!(self_type, env:) self_name = env.normalize_type_name(self_type.name) (env.module_name?(self_name) || env.interface_name?(self_name)) or raise new(type_name: self_type.name, location: self_type.location) end |