Class: ActionDispatch::Journey::Nodes::Binary

Inherits:
Node
  • Object
show all
Defined in:
actionpack/lib/action_dispatch/journey/nodes/node.rb

Overview

:nodoc:

Direct Known Subclasses

Cat

Instance Attribute Summary collapse

Attributes inherited from Node

#left, #memo

Instance Method Summary collapse

Methods inherited from Node

#each, #literal?, #name, #symbol?, #to_dot, #to_s, #to_sym, #type

Methods included from Enumerable

#as_json, #exclude?, #index_by, #many?, #sum

Constructor Details

#initialize(left, right) ⇒ Binary

Returns a new instance of Binary.



101
102
103
104
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 101

def initialize(left, right)
  super(left)
  @right = right
end

Instance Attribute Details

#rightObject

Returns the value of attribute right



99
100
101
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 99

def right
  @right
end

Instance Method Details

#childrenObject



106
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 106

def children; [left, right] end