Represents reading a numbered reference to a capture in the previous match.
$1 ^^
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`
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13736
def initialize(source, node_id, location, flags, number)
@source = source
@node_id = node_id
@location = location
@flags = flags
@number = number
end
Initialize a new NumberedReferenceReadNode
node.
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13797
def self.type
:numbered_reference_read_node
end
Return a symbol representation of this node type. See ‘Node::type`.
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13803
def ===(other)
other.is_a?(NumberedReferenceReadNode) &&
(number === other.number)
end
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13745
def accept(visitor)
visitor.visit_numbered_reference_read_node(self)
end
def accept: (Visitor
visitor) -> void
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13750
def child_nodes
[]
end
def child_nodes
: () -> Array[nil | Node]
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13760
def comment_targets
[] #: Array[Prism::node | Location]
end
def comment_targets
: () -> Array[Node | Location]
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13755
def compact_child_nodes
[]
end
def compact_child_nodes
: () -> Array
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13765
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 copy: (?node_id: Integer
, ?location: Location
, ?flags: Integer
, ?number: Integer
) -> NumberedReferenceReadNode
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13773
def deconstruct_keys(keys)
{ node_id: node_id, location: location, number: number }
end
def deconstruct_keys
: (Array keys) -> { node_id: Integer
, location: Location
, number: Integer
}
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13787
def inspect
InspectVisitor.compose(self)
end
def inspect -> String
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 13792
def type
:numbered_reference_read_node
end
Return a symbol representation of this node type. See ‘Node#type`.