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.



10065
10066
10067
10068
10069
# File 'lib/syntax_tree/node.rb', line 10065

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



10060
10061
10062
# File 'lib/syntax_tree/node.rb', line 10060

def arguments
  @arguments
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



10063
10064
10065
# File 'lib/syntax_tree/node.rb', line 10063

def comments
  @comments
end

Instance Method Details

#accept(visitor) ⇒ Object



10071
10072
10073
# File 'lib/syntax_tree/node.rb', line 10071

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

#child_nodesObject Also known as: deconstruct



10075
10076
10077
# File 'lib/syntax_tree/node.rb', line 10075

def child_nodes
  [arguments]
end

#deconstruct_keys(_keys) ⇒ Object



10081
10082
10083
# File 'lib/syntax_tree/node.rb', line 10081

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

#format(q) ⇒ Object



10085
10086
10087
10088
10089
10090
10091
10092
10093
10094
10095
10096
10097
10098
10099
10100
10101
# File 'lib/syntax_tree/node.rb', line 10085

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