Class: SyntaxTree::MLHSParen

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

Overview

MLHSParen represents parentheses being used to destruct values in a multiple assignment on the left hand side.

(left, right) = 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(contents:, comma: false, location:, comments: []) ⇒ MLHSParen

Returns a new instance of MLHSParen.



6389
6390
6391
6392
6393
6394
# File 'lib/syntax_tree/node.rb', line 6389

def initialize(contents:, comma: false, location:, comments: [])
  @contents = contents
  @comma = comma
  @location = location
  @comments = comments
end

Instance Attribute Details

#commaObject

boolean

whether or not there is a trailing comma at the end of this

list, which impacts destructuring. It’s an attr_accessor so that while the syntax tree is being built it can be set by its parent node



6384
6385
6386
# File 'lib/syntax_tree/node.rb', line 6384

def comma
  @comma
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



6387
6388
6389
# File 'lib/syntax_tree/node.rb', line 6387

def comments
  @comments
end

#contentsObject (readonly)

MLHS | MLHSParen

the contents inside of the parentheses



6379
6380
6381
# File 'lib/syntax_tree/node.rb', line 6379

def contents
  @contents
end

Instance Method Details

#accept(visitor) ⇒ Object



6396
6397
6398
# File 'lib/syntax_tree/node.rb', line 6396

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

#child_nodesObject Also known as: deconstruct



6400
6401
6402
# File 'lib/syntax_tree/node.rb', line 6400

def child_nodes
  [contents]
end

#deconstruct_keys(_keys) ⇒ Object



6406
6407
6408
# File 'lib/syntax_tree/node.rb', line 6406

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

#format(q) ⇒ Object



6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
# File 'lib/syntax_tree/node.rb', line 6410

def format(q)
  parent = q.parent

  if parent.is_a?(MAssign) || parent.is_a?(MLHSParen)
    q.format(contents)
    q.text(",") if comma
  else
    q.group(0, "(", ")") do
      q.indent do
        q.breakable("")
        q.format(contents)
      end

      q.text(",") if comma
      q.breakable("")
    end
  end
end