Class: Prism::MatchWriteNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::MatchWriteNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents writing local variables using a regular expression match with named capture groups.
/(?<foo>bar)/ =~ baz
^^^^^^^^^^^^^^^^^^^^
Instance Attribute Summary collapse
-
#call ⇒ Object
readonly
attr_reader call: CallNode.
-
#targets ⇒ Object
readonly
attr_reader targets: Array.
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[nil | Node].
-
#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, call: self.call, targets: self.targets) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?call: CallNode, ?targets: Array) -> MatchWriteNode.
- #deconstruct_keys(keys) ⇒ Object
-
#initialize(source, node_id, location, flags, call, targets) ⇒ MatchWriteNode
constructor
Initialize a new MatchWriteNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, call, targets) ⇒ MatchWriteNode
Initialize a new MatchWriteNode node.
12736 12737 12738 12739 12740 12741 12742 12743 |
# File '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 |
Instance Attribute Details
#call ⇒ Object (readonly)
attr_reader call: CallNode
12779 12780 12781 |
# File 'lib/prism/node.rb', line 12779 def call @call end |
#targets ⇒ Object (readonly)
attr_reader targets: Array
12782 12783 12784 |
# File 'lib/prism/node.rb', line 12782 def targets @targets end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
12795 12796 12797 |
# File 'lib/prism/node.rb', line 12795 def self.type :match_write_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.
12801 12802 12803 12804 12805 12806 |
# File '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 |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
12746 12747 12748 |
# File 'lib/prism/node.rb', line 12746 def accept(visitor) visitor.visit_match_write_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
12751 12752 12753 |
# File 'lib/prism/node.rb', line 12751 def child_nodes [call, *targets] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
12761 12762 12763 |
# File 'lib/prism/node.rb', line 12761 def comment_targets [call, *targets] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
12756 12757 12758 |
# File 'lib/prism/node.rb', line 12756 def compact_child_nodes [call, *targets] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, call: self.call, targets: self.targets) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?call: CallNode, ?targets: Array) -> MatchWriteNode
12766 12767 12768 |
# File '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 |
#deconstruct_keys(keys) ⇒ Object
12774 12775 12776 |
# File 'lib/prism/node.rb', line 12774 def deconstruct_keys(keys) { node_id: node_id, location: location, call: call, targets: targets } end |
#inspect ⇒ Object
def inspect -> String
12785 12786 12787 |
# File 'lib/prism/node.rb', line 12785 def inspect InspectVisitor.compose(self) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
12790 12791 12792 |
# File 'lib/prism/node.rb', line 12790 def type :match_write_node end |