Exception: RBS::NoSelfTypeFoundError
- Inherits:
-
DefinitionError
- Object
- StandardError
- ErrorBase
- DefinitionError
- RBS::NoSelfTypeFoundError
- 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.
Constructor Details
#initialize(type_name:, location:) ⇒ NoSelfTypeFoundError
Returns a new instance of NoSelfTypeFoundError.
130 131 132 133 134 135 |
# File 'lib/rbs/errors.rb', line 130 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.
128 129 130 |
# File 'lib/rbs/errors.rb', line 128 def location @location end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
127 128 129 |
# File 'lib/rbs/errors.rb', line 127 def type_name @type_name end |
Class Method Details
.check!(self_type, env:) ⇒ Object
137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/rbs/errors.rb', line 137 def self.check!(self_type, env:) type_name = self_type.name dic = case when type_name.class? env.class_decls when type_name.interface? env.interface_decls else raise end dic.key?(type_name) or raise new(type_name: type_name, location: self_type.location) end |