Represents writing local variables using a regular expression match with named capture groups.
/(?<foo>bar)/ =~ baz ^^^^^^^^^^^^^^^^^^^^
Attributes
Class Methods
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12926
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.
.
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12985
def self.type
:match_write_node
end
Return a symbol representation of this node type. See Node::type.
Instance Methods
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12991
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.
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12936
def accept(visitor)
visitor.visit_match_write_node(self)
end
def accept: (Visitor visitor) -> void
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12941
def child_nodes
[call, *targets]
end
def child_nodes: () -> Array
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12951
def comment_targets
[call, *targets] #: Array[Prism::node | Location]
end
def comment_targets: () -> Array[Node | Location]
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12946
def compact_child_nodes
[call, *targets]
end
def compact_child_nodes: () -> Array
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12956
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
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12964
def deconstruct_keys(keys)
{ node_id: node_id, location: location, call: call, targets: targets }
end
#
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12975
def inspect
InspectVisitor.compose(self)
end
def inspect -> String
#
4.0
View on GitHub
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 12980
def type
:match_write_node
end
Return a symbol representation of this node type. See Node#type.