Class: SyntaxTree::KwRestParam

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

Overview

KwRestParam represents defining a parameter in a method definition that accepts all remaining keyword parameters.

def method(**kwargs) end

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#pretty_print, #to_json

Constructor Details

#initialize(name:, location:, comments: []) ⇒ KwRestParam

Returns a new instance of KwRestParam.



5690
5691
5692
5693
5694
# File 'lib/syntax_tree/node.rb', line 5690

def initialize(name:, location:, comments: [])
  @name = name
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

[Array[ Comment | EmbDoc ]] the comments attached to this node



5688
5689
5690
# File 'lib/syntax_tree/node.rb', line 5688

def comments
  @comments
end

#nameObject (readonly)

[nil | Ident] the name of the parameter



5685
5686
5687
# File 'lib/syntax_tree/node.rb', line 5685

def name
  @name
end

Instance Method Details

#accept(visitor) ⇒ Object



5696
5697
5698
# File 'lib/syntax_tree/node.rb', line 5696

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

#child_nodesObject Also known as: deconstruct



5700
5701
5702
# File 'lib/syntax_tree/node.rb', line 5700

def child_nodes
  [name]
end

#deconstruct_keys(keys) ⇒ Object



5706
5707
5708
# File 'lib/syntax_tree/node.rb', line 5706

def deconstruct_keys(keys)
  { name: name, location: location, comments: comments }
end

#format(q) ⇒ Object



5710
5711
5712
5713
# File 'lib/syntax_tree/node.rb', line 5710

def format(q)
  q.text("**")
  q.format(name) if name
end