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.



5852
5853
5854
5855
5856
# File 'lib/syntax_tree/node.rb', line 5852

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



5850
5851
5852
# File 'lib/syntax_tree/node.rb', line 5850

def comments
  @comments
end

#nameObject (readonly)

[nil | Ident] the name of the parameter



5847
5848
5849
# File 'lib/syntax_tree/node.rb', line 5847

def name
  @name
end

Instance Method Details

#accept(visitor) ⇒ Object



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

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

#child_nodesObject Also known as: deconstruct



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

def child_nodes
  [name]
end

#deconstruct_keys(_keys) ⇒ Object



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

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

#format(q) ⇒ Object



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

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