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.



6474
6475
6476
6477
6478
# File 'lib/syntax_tree/node.rb', line 6474

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



6472
6473
6474
# File 'lib/syntax_tree/node.rb', line 6472

def comments
  @comments
end

#partsObject (readonly)

Array the parts that are being assigned



6469
6470
6471
# File 'lib/syntax_tree/node.rb', line 6469

def parts
  @parts
end

Instance Method Details

#accept(visitor) ⇒ Object



6480
6481
6482
# File 'lib/syntax_tree/node.rb', line 6480

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

#child_nodesObject Also known as: deconstruct



6484
6485
6486
# File 'lib/syntax_tree/node.rb', line 6484

def child_nodes
  parts
end

#deconstruct_keys(_keys) ⇒ Object



6490
6491
6492
# File 'lib/syntax_tree/node.rb', line 6490

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

#format(q) ⇒ Object



6494
6495
6496
# File 'lib/syntax_tree/node.rb', line 6494

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