class Prism::AndNode
Represents the use of the && operator or the and keyword.
left and right ^^^^^^^^^^^^^^
Public Class Methods
Source
# File lib/prism/node.rb, line 802 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 AndNode node.
Public Instance Methods
Source
# File lib/prism/node.rb, line 891 def left @left end
Represents the left side of the expression. It can be any non-void expression.
left and right ^^^^ 1 && 2 ^
Source
# File lib/prism/node.rb, line 905 def right @right end
Represents the right side of the expression.
left && right
^^^^^
1 and 2
^
Locations
Public Instance Methods
Source
# File lib/prism/node.rb, line 917 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 and keyword or the && operator.
left and right
^^^
Node Interface
Public Class Methods
Public Instance Methods
Source
# File lib/prism/node.rb, line 824 def accept(visitor) visitor.visit_and_node(self) end
See Node.accept.
Source
# File lib/prism/node.rb, line 829 def child_nodes [left, right] end
See Node.child_nodes.
Also aliased as: deconstruct
Source
# File lib/prism/node.rb, line 847 def comment_targets [left, right, operator_loc] #: Array[Prism::node | Location] end
See Node.comment_targets.
Source
# File lib/prism/node.rb, line 842 def compact_child_nodes [left, right] end
Source
# File lib/prism/node.rb, line 855 def copy(node_id: self.node_id, location: self.location, flags: self.flags, left: self.left, right: self.right, operator_loc: self.operator_loc) AndNode.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 834 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 926 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 936 def operator operator_loc.slice end
Slice the location of operator_loc from the source.