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.



5166
5167
5168
5169
5170
# File 'lib/syntax_tree/node.rb', line 5166

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



5164
5165
5166
# File 'lib/syntax_tree/node.rb', line 5164

def comments
  @comments
end

#nameObject (readonly)

nil | Ident

the name of the parameter



5161
5162
5163
# File 'lib/syntax_tree/node.rb', line 5161

def name
  @name
end

Instance Method Details

#accept(visitor) ⇒ Object



5172
5173
5174
# File 'lib/syntax_tree/node.rb', line 5172

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

#child_nodesObject Also known as: deconstruct



5176
5177
5178
# File 'lib/syntax_tree/node.rb', line 5176

def child_nodes
  [name]
end

#deconstruct_keys(keys) ⇒ Object



5182
5183
5184
# File 'lib/syntax_tree/node.rb', line 5182

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

#format(q) ⇒ Object



5186
5187
5188
5189
# File 'lib/syntax_tree/node.rb', line 5186

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