class Prism::MultiWriteNode
Stellt eine Zuweisung an einen Ausdruck mit mehreren Zielen dar.
a, b, c = 1, 2, 3 ^^^^^^^^^^^^^^^^^
Attribute
Stellt die Zielausdrücke vor einem Splat-Knoten dar.
a, b, * = 1, 2, 3, 4, 5 ^^^^
Der Splat-Knoten kann fehlen. In diesem Fall befinden sich alle Zielausdrücke im Feld `left`.
a, b, c = 1, 2, 3, 4, 5 ^^^^^^^
Stellt einen Splat-Knoten im Zielausdruck dar.
a, b, *c = 1, 2, 3, 4
^^
Die Variable kann leer sein, dies ergibt einen SplatNode mit einem `nil`-Ausdrucksfeld.
a, b, * = 1, 2, 3, 4
^
Wenn der Operator `*` weggelassen wird, enthält dieses Feld einen ImplicitRestNode
a, b, = 1, 2, 3, 4
^
Stellt die Zielausdrücke nach einem Splat-Knoten dar.
a, *, b, c = 1, 2, 3, 4, 5
^^^^
Der Wert, der den Zielen zugewiesen wird. Dies kann jeder nicht-leere Ausdruck sein.
a, b, c = 1, 2, 3
^^^^^^^
Öffentliche Klassenmethoden
Source
# File lib/prism/node.rb, line 13378 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
Initialisiert einen neuen MultiWriteNode-Knoten.
Source
# File lib/prism/node.rb, line 13555 def self.type :multi_write_node end
Gibt eine symbolische Darstellung dieses Knotentyps zurück. Siehe Node::type.
Öffentliche Instanzmethoden
Source
# File lib/prism/node.rb, line 13561 def ===(other) other.is_a?(MultiWriteNode) && (lefts.length == other.lefts.length) && lefts.zip(other.lefts).all? { |left, right| left === right } && (rest === other.rest) && (rights.length == other.rights.length) && rights.zip(other.rights).all? { |left, right| left === right } && (lparen_loc.nil? == other.lparen_loc.nil?) && (rparen_loc.nil? == other.rparen_loc.nil?) && (operator_loc.nil? == other.operator_loc.nil?) && (value === other.value) end
Implementiert die Fallgleichheit für den Knoten. Dies ist effektiv ==, aber ohne den Wert von Standorten zu vergleichen. Standorte werden nur auf Anwesenheit geprüft.
Source
# File lib/prism/node.rb, line 13393 def accept(visitor) visitor.visit_multi_write_node(self) end
def accept: (Visitor visitor) -> void
Source
# File lib/prism/node.rb, line 13398 def child_nodes [*lefts, rest, *rights, value] end
def child_nodes: () -> Array
Source
# File lib/prism/node.rb, line 13413 def comment_targets [*lefts, *rest, *rights, *lparen_loc, *rparen_loc, operator_loc, value] #: Array[Prism::node | Location] end
def comment_targets: () -> Array[Node | Location]
Source
# File lib/prism/node.rb, line 13403 def compact_child_nodes compact = [] #: Array[Prism::node] compact.concat(lefts) compact << rest if rest compact.concat(rights) compact << value compact end
def compact_child_nodes: () -> Array
Source
# File lib/prism/node.rb, line 13418 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
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?lefts: Array[LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | MultiTargetNode | BackReferenceReadNode | NumberedReferenceReadNode], ?rest: ImplicitRestNode | SplatNode | nil, ?rights: Array[LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | MultiTargetNode | BackReferenceReadNode | NumberedReferenceReadNode], ?lparen_loc: Location?, ?rparen_loc: Location?, ?operator_loc: Location, ?value: Prism::node) -> MultiWriteNode
Source
# File lib/prism/node.rb, line 13426 def deconstruct_keys(keys) { node_id: node_id, location: location, lefts: lefts, rest: rest, rights: rights, lparen_loc: lparen_loc, rparen_loc: rparen_loc, operator_loc: operator_loc, value: value } end
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, lefts: Array[LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | MultiTargetNode | BackReferenceReadNode | NumberedReferenceReadNode], rest: ImplicitRestNode | SplatNode | nil, rights: Array[LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | MultiTargetNode | BackReferenceReadNode | NumberedReferenceReadNode], lparen_loc: Location?, rparen_loc: Location?, operator_loc: Location, value: Prism::node }
Source
# File lib/prism/node.rb, line 13545 def inspect InspectVisitor.compose(self) end
def inspect -> String
Source
# File lib/prism/node.rb, line 13530 def lparen lparen_loc&.slice end
def lparen: () -> String?
Source
# File lib/prism/node.rb, line 13467 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
Die Position der öffnenden Klammer.
(a, b, c) = 1, 2, 3 ^
Source
# File lib/prism/node.rb, line 13540 def operator operator_loc.slice end
def operator: () -> String
Source
# File lib/prism/node.rb, line 13511 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Die Position des Operators.
a, b, c = 1, 2, 3
^
Source
# File lib/prism/node.rb, line 13535 def rparen rparen_loc&.slice end
def rparen: () -> String?
Source
# File lib/prism/node.rb, line 13489 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
Die Position der schließenden Klammer.
(a, b, c) = 1, 2, 3
^
Source
# File lib/prism/node.rb, line 13481 def save_lparen_loc(repository) repository.enter(node_id, :lparen_loc) unless @lparen_loc.nil? end
Speichert die Position von lparen_loc unter Verwendung der gegebenen gespeicherten Quelle, damit sie später abgerufen werden kann.
Source
# File lib/prism/node.rb, line 13519 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end
Speichert die Position von operator_loc unter Verwendung der gegebenen gespeicherten Quelle, damit sie später abgerufen werden kann.
Source
# File lib/prism/node.rb, line 13503 def save_rparen_loc(repository) repository.enter(node_id, :rparen_loc) unless @rparen_loc.nil? end
Speichert die Position von rparen_loc unter Verwendung der gegebenen gespeicherten Quelle, damit sie später abgerufen werden kann.