Class: Ibex::Runtime::RepairAdvance
- Inherits:
-
Object
- Object
- Ibex::Runtime::RepairAdvance
- Defined in:
- lib/json5/generated_parser.rb
Overview
Internal result of simulating reductions followed by one table action.
Instance Attribute Summary collapse
- #stack ⇒ Object readonly
- #status ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(status:, stack:) ⇒ RepairAdvance
constructor
A new instance of RepairAdvance.
Constructor Details
#initialize(status:, stack:) ⇒ RepairAdvance
Returns a new instance of RepairAdvance.
4617 4618 4619 4620 4621 |
# File 'lib/json5/generated_parser.rb', line 4617 def initialize(status:, stack:) @status = status @stack = stack freeze end |
Instance Attribute Details
#stack ⇒ Object (readonly)
4614 4615 4616 |
# File 'lib/json5/generated_parser.rb', line 4614 def stack @stack end |
#status ⇒ Object (readonly)
4613 4614 4615 |
# File 'lib/json5/generated_parser.rb', line 4613 def status @status end |