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

#pretty_print, #to_json

Constructor Details

#initialize(arguments:, location:, comments: []) ⇒ Yield

Returns a new instance of Yield.



9266
9267
9268
9269
9270
# File 'lib/syntax_tree/node.rb', line 9266

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



9261
9262
9263
# File 'lib/syntax_tree/node.rb', line 9261

def arguments
  @arguments
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



9264
9265
9266
# File 'lib/syntax_tree/node.rb', line 9264

def comments
  @comments
end

Instance Method Details

#accept(visitor) ⇒ Object



9272
9273
9274
# File 'lib/syntax_tree/node.rb', line 9272

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

#child_nodesObject Also known as: deconstruct



9276
9277
9278
# File 'lib/syntax_tree/node.rb', line 9276

def child_nodes
  [arguments]
end

#deconstruct_keys(keys) ⇒ Object



9282
9283
9284
# File 'lib/syntax_tree/node.rb', line 9282

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

#format(q) ⇒ Object



9286
9287
9288
9289
9290
9291
9292
9293
9294
9295
9296
9297
9298
9299
9300
9301
9302
# File 'lib/syntax_tree/node.rb', line 9286

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("")
        q.format(arguments)
      end
      q.breakable("")
      q.if_break { q.text(")") }
    end
  end
end