class Prism::NumberedReferenceReadNode
Represents reading a numbered reference to a capture in the previous match.
$1 ^^
Attributes
The (1-indexed, from the left) number of the capture group. Numbered references that are too large result in this value being ‘0`.
$1 # number `1` $5432 # number `5432` $4294967296 # number `0`
Public Class Methods
Initialize a new NumberedReferenceReadNode
node.
# File prism/node.rb, line 12381 def initialize(source, node_id, location, flags, number) @source = source @node_id = node_id @location = location @flags = flags @number = number end
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 12442 def self.type :numbered_reference_read_node end
Public Instance Methods
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File prism/node.rb, line 12448 def ===(other) other.is_a?(NumberedReferenceReadNode) && (number === other.number) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 12390 def accept(visitor) visitor.visit_numbered_reference_read_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 12395 def child_nodes [] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 12405 def comment_targets [] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 12400 def compact_child_nodes [] end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?number: Integer) -> NumberedReferenceReadNode
# File prism/node.rb, line 12410 def copy(node_id: self.node_id, location: self.location, flags: self.flags, number: self.number) NumberedReferenceReadNode.new(source, node_id, location, flags, number) end
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, number: Integer }
# File prism/node.rb, line 12418 def deconstruct_keys(keys) { node_id: node_id, location: location, number: number } end
def inspect -> String
# File prism/node.rb, line 12432 def inspect InspectVisitor.compose(self) end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 12437 def type :numbered_reference_read_node end