Class: SyntaxTree::AssocSplat

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

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

Attributes inherited from Node

#location

Instance Method Summary collapse

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

#commentsObject (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

#valueObject (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_nodesObject 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