Class: SyntaxTree::MAssign

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

MAssign is a parent node of any kind of multiple assignment. This includes splitting out variables on the left like:

first, second, third = value

as well as splitting out variables on the right, as in:

value = first, second, third

Both sides support splats, as well as variables following them. There’s also destructuring behavior that you can achieve with the following:

first, = value

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(target:, value:, location:, comments: []) ⇒ MAssign

Returns a new instance of MAssign.



6076
6077
6078
6079
6080
6081
# File 'lib/syntax_tree/node.rb', line 6076

def initialize(target:, value:, location:, comments: [])
  @target = target
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



6074
6075
6076
# File 'lib/syntax_tree/node.rb', line 6074

def comments
  @comments
end

#targetObject (readonly)

MLHS | MLHSParen

the target of the multiple assignment



6068
6069
6070
# File 'lib/syntax_tree/node.rb', line 6068

def target
  @target
end

#valueObject (readonly)

untyped

the value being assigned



6071
6072
6073
# File 'lib/syntax_tree/node.rb', line 6071

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



6083
6084
6085
# File 'lib/syntax_tree/node.rb', line 6083

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

#child_nodesObject Also known as: deconstruct



6087
6088
6089
# File 'lib/syntax_tree/node.rb', line 6087

def child_nodes
  [target, value]
end

#deconstruct_keys(_keys) ⇒ Object



6093
6094
6095
# File 'lib/syntax_tree/node.rb', line 6093

def deconstruct_keys(_keys)
  { target: target, value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
# File 'lib/syntax_tree/node.rb', line 6097

def format(q)
  q.group do
    q.group { q.format(target) }
    q.text(" =")
    q.indent do
      q.breakable
      q.format(value)
    end
  end
end