class Prism::MatchWriteNode
Represents writing local variables using a regular expression match with named capture groups.
/(?<foo>bar)/ =~ baz ^^^^^^^^^^^^^^^^^^^^
Attributes
attr_reader call: CallNode
attr_reader targets: Array
Public Class Methods
Initialize a new MatchWriteNode
node.
# File lib/prism/node.rb, line 12478 def initialize(source, node_id, location, flags, call, targets) @source = source @node_id = node_id @location = location @flags = flags @call = call @targets = targets end
Return a symbol representation of this node type. See Node::type
.
# File lib/prism/node.rb, line 12537 def self.type :match_write_node end
Public Instance Methods
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File lib/prism/node.rb, line 12543 def ===(other) other.is_a?(MatchWriteNode) && (call === other.call) && (targets.length == other.targets.length) && targets.zip(other.targets).all? { |left, right| left === right } end
def accept: (Visitor
visitor) -> void
# File lib/prism/node.rb, line 12488 def accept(visitor) visitor.visit_match_write_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File lib/prism/node.rb, line 12493 def child_nodes [call, *targets] end
def comment_targets
: () -> Array[Node | Location]
# File lib/prism/node.rb, line 12503 def comment_targets [call, *targets] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File lib/prism/node.rb, line 12498 def compact_child_nodes [call, *targets] end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?call: CallNode
, ?targets: Array) -> MatchWriteNode
# File lib/prism/node.rb, line 12508 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 deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, call: CallNode
, targets: Array }
# File lib/prism/node.rb, line 12516 def deconstruct_keys(keys) { node_id: node_id, location: location, call: call, targets: targets } end
def inspect -> String
# File lib/prism/node.rb, line 12527 def inspect InspectVisitor.compose(self) end
Return a symbol representation of this node type. See Node#type
.
# File lib/prism/node.rb, line 12532 def type :match_write_node end