Class: SyntaxTree::AssocSplat
Overview
AssocSplat represents double-splatting a value into a hash (either a hash literal or a bare hash in a method call).
{ **pairs }
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- untyped
-
the expression that is being splatted.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(value:, location:, comments: []) ⇒ AssocSplat
constructor
A new instance of AssocSplat.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ AssocSplat
Returns a new instance of AssocSplat.
1287 1288 1289 1290 1291 |
# File 'lib/syntax_tree/node.rb', line 1287 def initialize(value:, location:, comments: []) @value = value @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
1285 1286 1287 |
# File 'lib/syntax_tree/node.rb', line 1285 def comments @comments end |
#value ⇒ Object (readonly)
- untyped
-
the expression that is being splatted
1282 1283 1284 |
# File 'lib/syntax_tree/node.rb', line 1282 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
1293 1294 1295 |
# File 'lib/syntax_tree/node.rb', line 1293 def accept(visitor) visitor.visit_assoc_splat(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
1297 1298 1299 |
# File 'lib/syntax_tree/node.rb', line 1297 def child_nodes [value] end |
#deconstruct_keys(_keys) ⇒ Object
1303 1304 1305 |
# File 'lib/syntax_tree/node.rb', line 1303 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
1307 1308 1309 1310 |
# File 'lib/syntax_tree/node.rb', line 1307 def format(q) q.text("**") q.format(value) end |