class Prism::MatchWriteNode
Represents writing local variables using a regular expression match with named capture groups.
/(?<foo>bar)/ =~ baz ^^^^^^^^^^^^^^^^^^^^
Attributes
attr_reader targets: Array
Public Class Methods
Source
# File lib/prism/node.rb, line 12921 def initialize(source, node_id, location, flags, call, targets) @source = source @node_id = node_id @location = location @flags = flags @call = call @targets = targets end
Initialize a new MatchWriteNode node.
Source
# File lib/prism/node.rb, line 12980 def self.type :match_write_node end
Return a symbol representation of this node type. See Node::type.
Public Instance Methods
Source
# File lib/prism/node.rb, line 12986 def ===(other) other.is_a?(MatchWriteNode) && (call === other.call) && (targets.length == other.targets.length) && targets.zip(other.targets).all? { |left, right| left === right } end
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
Source
# File lib/prism/node.rb, line 12931 def accept(visitor) visitor.visit_match_write_node(self) end
def accept: (Visitor visitor) -> void
Source
# File lib/prism/node.rb, line 12936 def child_nodes [call, *targets] end
def child_nodes: () -> Array
Also aliased as: deconstruct
Source
# File lib/prism/node.rb, line 12946 def comment_targets [call, *targets] #: Array[Prism::node | Location] end
def comment_targets: () -> Array[Node | Location]
Source
# File lib/prism/node.rb, line 12941 def compact_child_nodes [call, *targets] end
def compact_child_nodes: () -> Array
Source
# File lib/prism/node.rb, line 12951 def copy(node_id: self.node_id, location: self.location, flags: self.flags, call: self.call, targets: self.targets) MatchWriteNode.new(source, node_id, location, flags, call, targets) end
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?call: CallNode, ?targets: Array) -> MatchWriteNode
Source
Source
# File lib/prism/node.rb, line 12970 def inspect InspectVisitor.compose(self) end
def inspect -> String