Class
Represents writing local variables using a regular expression match with named capture groups.
/(?<foo>bar)/ =~ baz ^^^^^^^^^^^^^^^^^^^^
Attributes
Class Methods
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12736
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.
::
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12795
def self.type
:match_write_node
end
Return a symbol representation of this node type. See ‘Node::type`.
Instance Methods
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12801
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.
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12746
def accept(visitor)
visitor.visit_match_write_node(self)
end
def accept: (Visitor
visitor) -> void
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12751
def child_nodes
[call, *targets]
end
def child_nodes
: () -> Array[nil | Node]
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12761
def comment_targets
[call, *targets] #: Array[Prism::node | Location]
end
def comment_targets
: () -> Array[Node | Location]
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12756
def compact_child_nodes
[call, *targets]
end
def compact_child_nodes
: () -> Array
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12766
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
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12774
def deconstruct_keys(keys)
{ node_id: node_id, location: location, call: call, targets: targets }
end
#
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12785
def inspect
InspectVisitor.compose(self)
end
def inspect -> String
#
lib/prism/node.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 12790
def type
:match_write_node
end
Return a symbol representation of this node type. See ‘Node#type`.