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

#construct_keys, #pretty_print, #to_json

Constructor Details

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

Returns a new instance of KwRestParam.



5773
5774
5775
5776
5777
# File 'lib/syntax_tree/node.rb', line 5773

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



5771
5772
5773
# File 'lib/syntax_tree/node.rb', line 5771

def comments
  @comments
end

#nameObject (readonly)

nil | Ident

the name of the parameter



5768
5769
5770
# File 'lib/syntax_tree/node.rb', line 5768

def name
  @name
end

Instance Method Details

#accept(visitor) ⇒ Object



5779
5780
5781
# File 'lib/syntax_tree/node.rb', line 5779

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

#child_nodesObject Also known as: deconstruct



5783
5784
5785
# File 'lib/syntax_tree/node.rb', line 5783

def child_nodes
  [name]
end

#deconstruct_keys(_keys) ⇒ Object



5789
5790
5791
# File 'lib/syntax_tree/node.rb', line 5789

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

#format(q) ⇒ Object



5793
5794
5795
5796
# File 'lib/syntax_tree/node.rb', line 5793

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