class Prism::OrNode
Represents the use of the || operator or the or keyword.
left or right ^^^^^^^^^^^^^
Public Class Methods
Source
# File lib/prism/node.rb, line 19331 def initialize(source, node_id, location, flags, left, right, operator_loc) @source = source @node_id = node_id @location = location @flags = flags @left = left @right = right @operator_loc = operator_loc end
Initialize a new OrNode node.
Public Instance Methods
Source
# File lib/prism/node.rb, line 19420 def left @left end
Represents the left side of the expression. It can be any non-void expression.
left or right ^^^^ 1 || 2 ^
Source
# File lib/prism/node.rb, line 19434 def right @right end
Represents the right side of the expression.
left || right
^^^^^
1 or 2
^
Locations
Public Instance Methods
Source
# File lib/prism/node.rb, line 19446 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
The Location of the or keyword or the || operator.
left or right
^^
Node Interface
Public Class Methods
Public Instance Methods
Source
# File lib/prism/node.rb, line 19353 def accept(visitor) visitor.visit_or_node(self) end
See Node.accept.
Source
# File lib/prism/node.rb, line 19358 def child_nodes [left, right] end
See Node.child_nodes.
Also aliased as: deconstruct
Source
# File lib/prism/node.rb, line 19376 def comment_targets [left, right, operator_loc] #: Array[Prism::node | Location] end
See Node.comment_targets.
Source
# File lib/prism/node.rb, line 19371 def compact_child_nodes [left, right] end
Source
# File lib/prism/node.rb, line 19384 def copy(node_id: self.node_id, location: self.location, flags: self.flags, left: self.left, right: self.right, operator_loc: self.operator_loc) OrNode.new(source, node_id, location, flags, left, right, operator_loc) end
Creates a copy of self with the given fields, using self as the template.
Source
# File lib/prism/node.rb, line 19363 def each_child_node return to_enum(:each_child_node) unless block_given? yield left yield right end
See Node.each_child_node.
Repository
Public Instance Methods
Source
# File lib/prism/node.rb, line 19455 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end
Save the operator_loc location using the given saved source so that it can be retrieved later.
Slicing
Public Instance Methods
Source
# File lib/prism/node.rb, line 19465 def operator operator_loc.slice end
Slice the location of operator_loc from the source.