Exception: RBS::RecursiveAncestorError
- Inherits:
-
StandardError
- Object
- StandardError
- RBS::RecursiveAncestorError
- Defined in:
- lib/rbs/errors.rb
Instance Attribute Summary collapse
-
#ancestors ⇒ Object
readonly
Returns the value of attribute ancestors.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(ancestors:, location:) ⇒ RecursiveAncestorError
constructor
A new instance of RecursiveAncestorError.
Constructor Details
#initialize(ancestors:, location:) ⇒ RecursiveAncestorError
Returns a new instance of RecursiveAncestorError.
55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/rbs/errors.rb', line 55 def initialize(ancestors:, location:) last = case last = ancestors.last when Definition::Ancestor::Singleton "singleton(#{last.name})" when Definition::Ancestor::Instance if last.args.empty? last.name.to_s else "#{last.name}[#{last.args.join(", ")}]" end end super "#{Location.to_string location}: Detected recursive ancestors: #{last}" end |
Instance Attribute Details
#ancestors ⇒ Object (readonly)
Returns the value of attribute ancestors.
52 53 54 |
# File 'lib/rbs/errors.rb', line 52 def ancestors @ancestors end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
53 54 55 |
# File 'lib/rbs/errors.rb', line 53 def location @location end |
Class Method Details
.check!(self_ancestor, ancestors:, location:) ⇒ Object
70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/rbs/errors.rb', line 70 def self.check!(self_ancestor, ancestors:, location:) case self_ancestor when Definition::Ancestor::Instance if ancestors.any? {|a| a.is_a?(Definition::Ancestor::Instance) && a.name == self_ancestor.name } raise new(ancestors: ancestors + [self_ancestor], location: location) end when Definition::Ancestor::Singleton if ancestors.include?(self_ancestor) raise new(ancestors: ancestors + [self_ancestor], location: location) end end end |