Class: SyntaxTree::Yield

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

Overview

Yield represents using the yield keyword with arguments.

yield 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(arguments:, location:, comments: []) ⇒ Yield

Returns a new instance of Yield.



10383
10384
10385
10386
10387
# File 'lib/syntax_tree/node.rb', line 10383

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

Instance Attribute Details

#argumentsObject (readonly)

Args | Paren

the arguments passed to the yield



10378
10379
10380
# File 'lib/syntax_tree/node.rb', line 10378

def arguments
  @arguments
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



10381
10382
10383
# File 'lib/syntax_tree/node.rb', line 10381

def comments
  @comments
end

Instance Method Details

#accept(visitor) ⇒ Object



10389
10390
10391
# File 'lib/syntax_tree/node.rb', line 10389

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

#child_nodesObject Also known as: deconstruct



10393
10394
10395
# File 'lib/syntax_tree/node.rb', line 10393

def child_nodes
  [arguments]
end

#deconstruct_keys(_keys) ⇒ Object



10399
10400
10401
# File 'lib/syntax_tree/node.rb', line 10399

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

#format(q) ⇒ Object



10403
10404
10405
10406
10407
10408
10409
10410
10411
10412
10413
10414
10415
10416
10417
10418
10419
# File 'lib/syntax_tree/node.rb', line 10403

def format(q)
  q.group do
    q.text("yield")

    if arguments.is_a?(Paren)
      q.format(arguments)
    else
      q.if_break { q.text("(") }.if_flat { q.text(" ") }
      q.indent do
        q.breakable_empty
        q.format(arguments)
      end
      q.breakable_empty
      q.if_break { q.text(")") }
    end
  end
end