Class: Journey::Nodes::Binary
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
#each, #literal?, #name, #symbol?, #to_dot, #to_s, #to_sym, #type
Constructor Details
#initialize(left, right) ⇒ Binary
Returns a new instance of Binary.
100 101 102 103 |
# File 'lib/journey/nodes/node.rb', line 100 def initialize left, right super(left) @right = right end |
Instance Attribute Details
#right ⇒ Object
Returns the value of attribute right.
98 99 100 |
# File 'lib/journey/nodes/node.rb', line 98 def right @right end |
Instance Method Details
#children ⇒ Object
105 |
# File 'lib/journey/nodes/node.rb', line 105 def children; [left, right] end |