Exception: RBS::InheritModuleError
- Inherits:
-
DefinitionError
- Object
- StandardError
- BaseError
- DefinitionError
- RBS::InheritModuleError
- Defined in:
- lib/rbs/errors.rb
Instance Attribute Summary collapse
-
#super_decl ⇒ Object
readonly
Returns the value of attribute super_decl.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(super_decl) ⇒ InheritModuleError
constructor
A new instance of InheritModuleError.
Constructor Details
#initialize(super_decl) ⇒ InheritModuleError
Returns a new instance of InheritModuleError.
168 169 170 171 172 |
# File 'lib/rbs/errors.rb', line 168 def initialize(super_decl) @super_decl = super_decl super "#{Location.to_string(super_decl.location)}: Cannot inherit a module: #{super_decl.name}" end |
Instance Attribute Details
#super_decl ⇒ Object (readonly)
Returns the value of attribute super_decl.
166 167 168 |
# File 'lib/rbs/errors.rb', line 166 def super_decl @super_decl end |
Class Method Details
.check!(super_decl, env:) ⇒ Object
174 175 176 177 178 |
# File 'lib/rbs/errors.rb', line 174 def self.check!(super_decl, env:) return if env.class_decl?(super_decl.name) || env.class_alias?(super_decl.name) raise new(super_decl) end |