Class: Prism::BackReferenceReadNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::BackReferenceReadNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents reading a reference to a field in the previous match.
$'
^^
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
The name of the back-reference variable, including the leading ‘$`.
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array.
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol) -> BackReferenceReadNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol }.
-
#initialize(source, node_id, location, flags, name) ⇒ BackReferenceReadNode
constructor
Initialize a new BackReferenceReadNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, name) ⇒ BackReferenceReadNode
Initialize a new BackReferenceReadNode node.
1418 1419 1420 1421 1422 1423 1424 |
# File 'lib/prism/node.rb', line 1418 def initialize(source, node_id, location, flags, name) @source = source @node_id = node_id @location = location @flags = flags @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
The name of the back-reference variable, including the leading ‘$`.
$& # name `:$&`
$+ # name `:$+`
1464 1465 1466 |
# File 'lib/prism/node.rb', line 1464 def name @name end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
1477 1478 1479 |
# File 'lib/prism/node.rb', line 1477 def self.type :back_reference_read_node end |
Instance Method Details
#===(other) ⇒ Object
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
1483 1484 1485 1486 |
# File 'lib/prism/node.rb', line 1483 def ===(other) other.is_a?(BackReferenceReadNode) && (name === other.name) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
1427 1428 1429 |
# File 'lib/prism/node.rb', line 1427 def accept(visitor) visitor.visit_back_reference_read_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
1432 1433 1434 |
# File 'lib/prism/node.rb', line 1432 def child_nodes [] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
1442 1443 1444 |
# File 'lib/prism/node.rb', line 1442 def comment_targets [] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
1437 1438 1439 |
# File 'lib/prism/node.rb', line 1437 def compact_child_nodes [] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol) -> BackReferenceReadNode
1447 1448 1449 |
# File 'lib/prism/node.rb', line 1447 def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name) BackReferenceReadNode.new(source, node_id, location, flags, name) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol }
1455 1456 1457 |
# File 'lib/prism/node.rb', line 1455 def deconstruct_keys(keys) { node_id: node_id, location: location, name: name } end |
#inspect ⇒ Object
def inspect -> String
1467 1468 1469 |
# File 'lib/prism/node.rb', line 1467 def inspect InspectVisitor.compose(self) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
1472 1473 1474 |
# File 'lib/prism/node.rb', line 1472 def type :back_reference_read_node end |