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.



10107
10108
10109
10110
10111
# File 'lib/syntax_tree/node.rb', line 10107

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



10102
10103
10104
# File 'lib/syntax_tree/node.rb', line 10102

def arguments
  @arguments
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



10105
10106
10107
# File 'lib/syntax_tree/node.rb', line 10105

def comments
  @comments
end

Instance Method Details

#accept(visitor) ⇒ Object



10113
10114
10115
# File 'lib/syntax_tree/node.rb', line 10113

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

#child_nodesObject Also known as: deconstruct



10117
10118
10119
# File 'lib/syntax_tree/node.rb', line 10117

def child_nodes
  [arguments]
end

#deconstruct_keys(_keys) ⇒ Object



10123
10124
10125
# File 'lib/syntax_tree/node.rb', line 10123

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

#format(q) ⇒ Object



10127
10128
10129
10130
10131
10132
10133
10134
10135
10136
10137
10138
10139
10140
10141
10142
10143
# File 'lib/syntax_tree/node.rb', line 10127

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