Class: SyntaxTree::Yield
Overview
Yield represents using the yield keyword with arguments.
yield value
Instance Attribute Summary collapse
-
#arguments ⇒ Object
readonly
- Args | Paren
-
the arguments passed to the yield.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(arguments:, location:, comments: []) ⇒ Yield
constructor
A new instance of Yield.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(arguments:, location:, comments: []) ⇒ Yield
Returns a new instance of Yield.
10121 10122 10123 10124 10125 |
# File 'lib/syntax_tree/node.rb', line 10121 def initialize(arguments:, location:, comments: []) @arguments = arguments @location = location @comments = comments end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
- Args | Paren
-
the arguments passed to the yield
10116 10117 10118 |
# File 'lib/syntax_tree/node.rb', line 10116 def arguments @arguments end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
10119 10120 10121 |
# File 'lib/syntax_tree/node.rb', line 10119 def comments @comments end |
Instance Method Details
#accept(visitor) ⇒ Object
10127 10128 10129 |
# File 'lib/syntax_tree/node.rb', line 10127 def accept(visitor) visitor.visit_yield(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
10131 10132 10133 |
# File 'lib/syntax_tree/node.rb', line 10131 def child_nodes [arguments] end |
#deconstruct_keys(_keys) ⇒ Object
10137 10138 10139 |
# File 'lib/syntax_tree/node.rb', line 10137 def deconstruct_keys(_keys) { arguments: arguments, location: location, comments: comments } end |
#format(q) ⇒ Object
10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 |
# File 'lib/syntax_tree/node.rb', line 10141 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 |