Class: Journey::Nodes::Or

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

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

Constructor Details

#initialize(children) ⇒ Or

Returns a new instance of Or.



115
116
117
# File 'lib/journey/nodes/node.rb', line 115

def initialize children
  @children = children
end

Instance Attribute Details

#childrenObject (readonly)

Returns the value of attribute children.



113
114
115
# File 'lib/journey/nodes/node.rb', line 113

def children
  @children
end

Instance Method Details

#typeObject



119
# File 'lib/journey/nodes/node.rb', line 119

def type; :OR; end