Exception: RBS::NoMixinFoundError
- Inherits:
-
DefinitionError
- Object
- StandardError
- BaseError
- DefinitionError
- RBS::NoMixinFoundError
- Includes:
- DetailedMessageable
- 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
Methods included from DetailedMessageable
Constructor Details
#initialize(type_name:, member:) ⇒ NoMixinFoundError
Returns a new instance of NoMixinFoundError.
235 236 237 238 239 240 |
# File 'lib/rbs/errors.rb', line 235 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.
233 234 235 |
# File 'lib/rbs/errors.rb', line 233 def member @member end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
232 233 234 |
# File 'lib/rbs/errors.rb', line 232 def type_name @type_name end |
Class Method Details
.check!(type_name, env:, member:) ⇒ Object
246 247 248 |
# File 'lib/rbs/errors.rb', line 246 def self.check!(type_name, env:, member:) (env.module_name?(type_name) || env.interface_name?(type_name)) or raise new(type_name: type_name, member: member) end |
Instance Method Details
#location ⇒ Object
242 243 244 |
# File 'lib/rbs/errors.rb', line 242 def location member.location end |