Exception: RBS::RecursiveAliasDefinitionError
- Inherits:
-
DefinitionError
- Object
- StandardError
- ErrorBase
- DefinitionError
- RBS::RecursiveAliasDefinitionError
- Defined in:
- lib/rbs/errors.rb
Instance Attribute Summary collapse
-
#defs ⇒ Object
readonly
Returns the value of attribute defs.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type:, defs:) ⇒ RecursiveAliasDefinitionError
constructor
A new instance of RecursiveAliasDefinitionError.
- #location ⇒ Object
Constructor Details
#initialize(type:, defs:) ⇒ RecursiveAliasDefinitionError
Returns a new instance of RecursiveAliasDefinitionError.
340 341 342 343 344 345 |
# File 'lib/rbs/errors.rb', line 340 def initialize(type:, defs:) @type = type @defs = defs super "#{Location.to_string location}: Recursive aliases in #{type}: #{defs.map(&:name).join(", ")}" end |
Instance Attribute Details
#defs ⇒ Object (readonly)
Returns the value of attribute defs.
338 339 340 |
# File 'lib/rbs/errors.rb', line 338 def defs @defs end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
337 338 339 |
# File 'lib/rbs/errors.rb', line 337 def type @type end |
Instance Method Details
#location ⇒ Object
347 348 349 350 351 |
# File 'lib/rbs/errors.rb', line 347 def location first_def = defs.first or raise original = first_def.original or raise original.location end |