Class: ActionDispatch::Journey::Nodes::Binary
- Defined in:
- lib/action_dispatch/journey/nodes/node.rb
Overview
:nodoc:
Direct Known Subclasses
Instance Attribute Summary collapse
-
#right ⇒ Object
Returns the value of attribute right.
Attributes inherited from Node
Instance Method Summary collapse
- #children ⇒ Object
-
#initialize(left, right) ⇒ Binary
constructor
A new instance of Binary.
Methods inherited from Node
#cat?, #each, #group?, #literal?, #name, #star?, #symbol?, #terminal?, #to_dot, #to_s, #to_sym, #type
Constructor Details
#initialize(left, right) ⇒ Binary
Returns a new instance of Binary.
183 184 185 186 |
# File 'lib/action_dispatch/journey/nodes/node.rb', line 183 def initialize(left, right) super(left) @right = right end |
Instance Attribute Details
#right ⇒ Object
Returns the value of attribute right.
181 182 183 |
# File 'lib/action_dispatch/journey/nodes/node.rb', line 181 def right @right end |
Instance Method Details
#children ⇒ Object
188 |
# File 'lib/action_dispatch/journey/nodes/node.rb', line 188 def children; [left, right] end |