class Prism::MultiWriteNode
Represents a write to a multi-target expression.
a, b, c = 1, 2, 3 ^^^^^^^^^^^^^^^^^
Public Class Methods
Source
# File lib/prism/node.rb, line 18042 def initialize(source, node_id, location, flags, lefts, rest, rights, lparen_loc, rparen_loc, operator_loc, value) @source = source @node_id = node_id @location = location @flags = flags @lefts = lefts @rest = rest @rights = rights @lparen_loc = lparen_loc @rparen_loc = rparen_loc @operator_loc = operator_loc @value = value end
Initialize a new MultiWriteNode node.
Public Instance Methods
Source
# File lib/prism/node.rb, line 18144 def lefts @lefts end
Represents the targets expressions before a splat node.
a, b, * = 1, 2, 3, 4, 5 ^^^^
The splat node can be absent, in that case all target expressions are in the left field.
a, b, c = 1, 2, 3, 4, 5 ^^^^^^^
Source
# File lib/prism/node.rb, line 18165 def rest @rest end
Represents a splat node in the target expression.
a, b, *c = 1, 2, 3, 4
^^
The variable can be empty, this results in a SplatNode with a nil expression field.
a, b, * = 1, 2, 3, 4
^
If the * is omitted, this field will contain an ImplicitRestNode
a, b, = 1, 2, 3, 4
^
Source
# File lib/prism/node.rb, line 18176 def rights @rights end
Represents the targets expressions after a splat node.
a, *, b, c = 1, 2, 3, 4, 5
^^^^
Source
# File lib/prism/node.rb, line 18260 def value @value end
The value to write to the targets. It can be any non-void expression.
a, b, c = 1, 2, 3
^^^^^^^
Locations
Public Instance Methods
Source
# File lib/prism/node.rb, line 18188 def lparen_loc location = @lparen_loc case location when nil nil when Location location else @lparen_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
The Location of the opening parenthesis.
(a, b, c) = 1, 2, 3 ^
Source
# File lib/prism/node.rb, line 18240 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
The Location of the operator.
a, b, c = 1, 2, 3
^
Source
# File lib/prism/node.rb, line 18214 def rparen_loc location = @rparen_loc case location when nil nil when Location location else @rparen_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
The Location of the closing parenthesis.
(a, b, c) = 1, 2, 3
^
Node Interface
Public Class Methods
Public Instance Methods
Source
# File lib/prism/node.rb, line 18068 def accept(visitor) visitor.visit_multi_write_node(self) end
See Node.accept.
Source
# File lib/prism/node.rb, line 18073 def child_nodes [*lefts, rest, *rights, value] end
See Node.child_nodes.
Source
# File lib/prism/node.rb, line 18098 def comment_targets [*lefts, *rest, *rights, *lparen_loc, *rparen_loc, operator_loc, value] #: Array[Prism::node | Location] end
See Node.comment_targets.
Source
# File lib/prism/node.rb, line 18088 def compact_child_nodes compact = [] #: Array[Prism::node] compact.concat(lefts) compact << rest if rest compact.concat(rights) compact << value compact end
Source
# File lib/prism/node.rb, line 18106 def copy(node_id: self.node_id, location: self.location, flags: self.flags, lefts: self.lefts, rest: self.rest, rights: self.rights, lparen_loc: self.lparen_loc, rparen_loc: self.rparen_loc, operator_loc: self.operator_loc, value: self.value) MultiWriteNode.new(source, node_id, location, flags, lefts, rest, rights, lparen_loc, rparen_loc, operator_loc, value) end
Creates a copy of self with the given fields, using self as the template.
Source
# File lib/prism/node.rb, line 18078 def each_child_node return to_enum(:each_child_node) unless block_given? lefts.each { |node| yield node } yield rest if rest rights.each { |node| yield node } yield value end
See Node.each_child_node.
Repository
Public Instance Methods
Source
# File lib/prism/node.rb, line 18203 def save_lparen_loc(repository) repository.enter(node_id, :lparen_loc) unless @lparen_loc.nil? end
Save the lparen_loc location using the given saved source so that it can be retrieved later.
Source
# File lib/prism/node.rb, line 18249 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end
Save the operator_loc location using the given saved source so that it can be retrieved later.
Source
# File lib/prism/node.rb, line 18229 def save_rparen_loc(repository) repository.enter(node_id, :rparen_loc) unless @rparen_loc.nil? end
Save the rparen_loc location using the given saved source so that it can be retrieved later.
Slicing
Public Instance Methods
Source
# File lib/prism/node.rb, line 18270 def lparen lparen_loc&.slice end
Slice the location of lparen_loc from the source.
Source
# File lib/prism/node.rb, line 18286 def operator operator_loc.slice end
Slice the location of operator_loc from the source.
Source
# File lib/prism/node.rb, line 18278 def rparen rparen_loc&.slice end
Slice the location of rparen_loc from the source.