Class: SyntaxTree::MRHS

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

Overview

MRHS represents the values that are being assigned on the right-hand side of a multiple assignment.

values = first, second, third

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(parts:, location:, comments: []) ⇒ MRHS

Returns a new instance of MRHS.



6704
6705
6706
6707
6708
# File 'lib/syntax_tree/node.rb', line 6704

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

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



6702
6703
6704
# File 'lib/syntax_tree/node.rb', line 6702

def comments
  @comments
end

#partsObject (readonly)

Array the parts that are being assigned



6699
6700
6701
# File 'lib/syntax_tree/node.rb', line 6699

def parts
  @parts
end

Instance Method Details

#accept(visitor) ⇒ Object



6710
6711
6712
# File 'lib/syntax_tree/node.rb', line 6710

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

#child_nodesObject Also known as: deconstruct



6714
6715
6716
# File 'lib/syntax_tree/node.rb', line 6714

def child_nodes
  parts
end

#deconstruct_keys(_keys) ⇒ Object



6720
6721
6722
# File 'lib/syntax_tree/node.rb', line 6720

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

#format(q) ⇒ Object



6724
6725
6726
# File 'lib/syntax_tree/node.rb', line 6724

def format(q)
  q.seplist(parts) { |part| q.format(part) }
end