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.



5861
5862
5863
5864
5865
# File 'lib/syntax_tree/node.rb', line 5861

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



5859
5860
5861
# File 'lib/syntax_tree/node.rb', line 5859

def comments
  @comments
end

#nameObject (readonly)

nil | Ident

the name of the parameter



5856
5857
5858
# File 'lib/syntax_tree/node.rb', line 5856

def name
  @name
end

Instance Method Details

#accept(visitor) ⇒ Object



5867
5868
5869
# File 'lib/syntax_tree/node.rb', line 5867

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

#child_nodesObject Also known as: deconstruct



5871
5872
5873
# File 'lib/syntax_tree/node.rb', line 5871

def child_nodes
  [name]
end

#deconstruct_keys(_keys) ⇒ Object



5877
5878
5879
# File 'lib/syntax_tree/node.rb', line 5877

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

#format(q) ⇒ Object



5881
5882
5883
5884
# File 'lib/syntax_tree/node.rb', line 5881

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