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.
-
#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.
12926 12927 12928 12929 12930 12931 12932 12933 |
# File '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 |
Instance Attribute Details
#call ⇒ Object (readonly)
attr_reader call: CallNode
12969 12970 12971 |
# File 'lib/prism/node.rb', line 12969 def call @call end |
#targets ⇒ Object (readonly)
attr_reader targets: Array
12972 12973 12974 |
# File 'lib/prism/node.rb', line 12972 def targets @targets end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
12985 12986 12987 |
# File 'lib/prism/node.rb', line 12985 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.
12991 12992 12993 12994 12995 12996 |
# File '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 |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
12936 12937 12938 |
# File 'lib/prism/node.rb', line 12936 def accept(visitor) visitor.visit_match_write_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
12941 12942 12943 |
# File 'lib/prism/node.rb', line 12941 def child_nodes [call, *targets] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
12951 12952 12953 |
# File 'lib/prism/node.rb', line 12951 def comment_targets [call, *targets] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
12946 12947 12948 |
# File 'lib/prism/node.rb', line 12946 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
12956 12957 12958 |
# File '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 |
#deconstruct_keys(keys) ⇒ Object
12964 12965 12966 |
# File 'lib/prism/node.rb', line 12964 def deconstruct_keys(keys) { node_id: node_id, location: location, call: call, targets: targets } end |
#inspect ⇒ Object
def inspect -> String
12975 12976 12977 |
# File 'lib/prism/node.rb', line 12975 def inspect InspectVisitor.compose(self) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
12980 12981 12982 |
# File 'lib/prism/node.rb', line 12980 def type :match_write_node end |