class SyntaxTree::KwRestParam

KwRestParam represents defining a parameter in a method definition that accepts all remaining keyword parameters.

def method(**kwargs) end

Attributes

comments[R]
Array[ Comment | EmbDoc ]

the comments attached to this node

name[R]
nil | Ident

the name of the parameter

Public Class Methods

new(name:, location:) click to toggle source
# File lib/syntax_tree/node.rb, line 6998
def initialize(name:, location:)
  @name = name
  @location = location
  @comments = []
end

Public Instance Methods

===(other) click to toggle source
# File lib/syntax_tree/node.rb, line 7034
def ===(other)
  other.is_a?(KwRestParam) && name === other.name
end
accept(visitor) click to toggle source
# File lib/syntax_tree/node.rb, line 7004
def accept(visitor)
  visitor.visit_kwrest_param(self)
end
child_nodes() click to toggle source
# File lib/syntax_tree/node.rb, line 7008
def child_nodes
  [name]
end
Also aliased as: deconstruct
copy(name: nil, location: nil) click to toggle source
# File lib/syntax_tree/node.rb, line 7012
def copy(name: nil, location: nil)
  node =
    KwRestParam.new(
      name: name || self.name,
      location: location || self.location
    )

  node.comments.concat(comments.map(&:copy))
  node
end
deconstruct()
Alias for: child_nodes
deconstruct_keys(_keys) click to toggle source
# File lib/syntax_tree/node.rb, line 7025
def deconstruct_keys(_keys)
  { name: name, location: location, comments: comments }
end
format(q) click to toggle source
# File lib/syntax_tree/node.rb, line 7029
def format(q)
  q.text("**")
  q.format(name) if name
end