Exception: RBS::NoMixinFoundError
- Inherits:
-
DefinitionError
- Object
- StandardError
- BaseError
- DefinitionError
- RBS::NoMixinFoundError
- Defined in:
- lib/rbs/errors.rb
Instance Attribute Summary collapse
-
#member ⇒ Object
readonly
Returns the value of attribute member.
-
#type_name ⇒ Object
readonly
Returns the value of attribute type_name.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(type_name:, member:) ⇒ NoMixinFoundError
constructor
A new instance of NoMixinFoundError.
- #location ⇒ Object
Constructor Details
#initialize(type_name:, member:) ⇒ NoMixinFoundError
Returns a new instance of NoMixinFoundError.
206 207 208 209 210 211 |
# File 'lib/rbs/errors.rb', line 206 def initialize(type_name:, member:) @type_name = type_name @member = member super "#{Location.to_string location}: Could not find mixin: #{type_name}" end |
Instance Attribute Details
#member ⇒ Object (readonly)
Returns the value of attribute member.
204 205 206 |
# File 'lib/rbs/errors.rb', line 204 def member @member end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
203 204 205 |
# File 'lib/rbs/errors.rb', line 203 def type_name @type_name end |
Class Method Details
.check!(type_name, env:, member:) ⇒ Object
217 218 219 220 221 222 223 224 225 226 227 228 |
# File 'lib/rbs/errors.rb', line 217 def self.check!(type_name, env:, member:) 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, member: member) end |
Instance Method Details
#location ⇒ Object
213 214 215 |
# File 'lib/rbs/errors.rb', line 213 def location member.location end |