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.



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

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



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

def comments
  @comments
end

#nameObject (readonly)

nil | Ident

the name of the parameter



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

def name
  @name
end

Instance Method Details

#accept(visitor) ⇒ Object



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

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

#child_nodesObject Also known as: deconstruct



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

def child_nodes
  [name]
end

#deconstruct_keys(keys) ⇒ Object



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

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

#format(q) ⇒ Object



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

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