Class: Prism::MultiTargetNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
ext/prism/api_node.c

Overview

Represents a multi-target expression.

a, (b, c) = 1, 2, 3
   ^^^^^^

This can be a part of MultiWriteNode as above, or the target of a for loop

for a, b in [[1, 2], [3, 4]]
    ^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, lefts, rest, rights, lparen_loc, rparen_loc) ⇒ MultiTargetNode

Initialize a new MultiTargetNode node.



13984
13985
13986
13987
13988
13989
13990
13991
13992
13993
13994
# File 'lib/prism/node.rb', line 13984

def initialize(source, node_id, location, flags, lefts, rest, rights, lparen_loc, rparen_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @lefts = lefts
  @rest = rest
  @rights = rights
  @lparen_loc = lparen_loc
  @rparen_loc = rparen_loc
end

Instance Attribute Details

#leftsObject (readonly)

Represents the targets expressions before a splat node.

a, (b, c, *) = 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
    ^^^^


14051
14052
14053
# File 'lib/prism/node.rb', line 14051

def lefts
  @lefts
end

#restObject (readonly)

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
     ^


14067
14068
14069
# File 'lib/prism/node.rb', line 14067

def rest
  @rest
end

#rightsObject (readonly)

Represents the targets expressions after a splat node.

a, (*, b, c) = 1, 2, 3, 4, 5
       ^^^^


14073
14074
14075
# File 'lib/prism/node.rb', line 14073

def rights
  @rights
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See Node::type.



14140
14141
14142
# File 'lib/prism/node.rb', line 14140

def self.type
  :multi_target_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.



14146
14147
14148
14149
14150
14151
14152
14153
14154
14155
# File 'lib/prism/node.rb', line 14146

def ===(other)
  other.is_a?(MultiTargetNode) &&
    (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?)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



13997
13998
13999
# File 'lib/prism/node.rb', line 13997

def accept(visitor)
  visitor.visit_multi_target_node(self)
end

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



14002
14003
14004
# File 'lib/prism/node.rb', line 14002

def child_nodes
  [*lefts, rest, *rights]
end

#comment_targetsObject

def comment_targets: () -> Array[Node | Location]



14025
14026
14027
# File 'lib/prism/node.rb', line 14025

def comment_targets
  [*lefts, *rest, *rights, *lparen_loc, *rparen_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



14016
14017
14018
14019
14020
14021
14022
# File 'lib/prism/node.rb', line 14016

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact.concat(lefts)
  compact << rest if rest
  compact.concat(rights)
  compact
end

#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) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?lefts: Array[LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | MultiTargetNode | RequiredParameterNode | BackReferenceReadNode | NumberedReferenceReadNode], ?rest: ImplicitRestNode | SplatNode | nil, ?rights: Array[LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | MultiTargetNode | RequiredParameterNode | BackReferenceReadNode | NumberedReferenceReadNode], ?lparen_loc: Location?, ?rparen_loc: Location?) -> MultiTargetNode



14030
14031
14032
# File 'lib/prism/node.rb', line 14030

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)
  MultiTargetNode.new(source, node_id, location, flags, lefts, rest, rights, lparen_loc, rparen_loc)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, lefts: Array[LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | MultiTargetNode | RequiredParameterNode | BackReferenceReadNode | NumberedReferenceReadNode], rest: ImplicitRestNode | SplatNode | nil, rights: Array[LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | MultiTargetNode | RequiredParameterNode | BackReferenceReadNode | NumberedReferenceReadNode], lparen_loc: Location?, rparen_loc: Location? }



14038
14039
14040
# File 'lib/prism/node.rb', line 14038

def deconstruct_keys(keys)
  { node_id: node_id, location: location, lefts: lefts, rest: rest, rights: rights, lparen_loc: lparen_loc, rparen_loc: rparen_loc }
end

#each_child_node {|rest| ... } ⇒ Object

def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator

Yields:



14007
14008
14009
14010
14011
14012
14013
# File 'lib/prism/node.rb', line 14007

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 }
end

#inspectObject

def inspect -> String



14130
14131
14132
# File 'lib/prism/node.rb', line 14130

def inspect
  InspectVisitor.compose(self)
end

#lparenObject

def lparen: () -> String?



14120
14121
14122
# File 'lib/prism/node.rb', line 14120

def lparen
  lparen_loc&.slice
end

#lparen_locObject

The location of the opening parenthesis.

a, (b, c) = 1, 2, 3
   ^


14079
14080
14081
14082
14083
14084
14085
14086
14087
14088
14089
# File 'lib/prism/node.rb', line 14079

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

#rparenObject

def rparen: () -> String?



14125
14126
14127
# File 'lib/prism/node.rb', line 14125

def rparen
  rparen_loc&.slice
end

#rparen_locObject

The location of the closing parenthesis.

a, (b, c) = 1, 2, 3
        ^


14101
14102
14103
14104
14105
14106
14107
14108
14109
14110
14111
# File 'lib/prism/node.rb', line 14101

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

#save_lparen_loc(repository) ⇒ Object

Save the lparen_loc location using the given saved source so that it can be retrieved later.



14093
14094
14095
# File 'lib/prism/node.rb', line 14093

def save_lparen_loc(repository)
  repository.enter(node_id, :lparen_loc) unless @lparen_loc.nil?
end

#save_rparen_loc(repository) ⇒ Object

Save the rparen_loc location using the given saved source so that it can be retrieved later.



14115
14116
14117
# File 'lib/prism/node.rb', line 14115

def save_rparen_loc(repository)
  repository.enter(node_id, :rparen_loc) unless @rparen_loc.nil?
end

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



14135
14136
14137
# File 'lib/prism/node.rb', line 14135

def type
  :multi_target_node
end