Class: SyntaxTree::RestParam

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

RestParam represents defining a parameter in a method definition that accepts all remaining positional parameters.

def method(*rest) 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: []) ⇒ RestParam

Returns a new instance of RestParam.



7810
7811
7812
7813
7814
# File 'lib/syntax_tree/node.rb', line 7810

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



7808
7809
7810
# File 'lib/syntax_tree/node.rb', line 7808

def comments
  @comments
end

#nameObject (readonly)

nil | Ident

the name of the parameter



7805
7806
7807
# File 'lib/syntax_tree/node.rb', line 7805

def name
  @name
end

Instance Method Details

#accept(visitor) ⇒ Object



7816
7817
7818
# File 'lib/syntax_tree/node.rb', line 7816

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

#child_nodesObject Also known as: deconstruct



7820
7821
7822
# File 'lib/syntax_tree/node.rb', line 7820

def child_nodes
  [name]
end

#deconstruct_keys(_keys) ⇒ Object



7826
7827
7828
# File 'lib/syntax_tree/node.rb', line 7826

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

#format(q) ⇒ Object



7830
7831
7832
7833
# File 'lib/syntax_tree/node.rb', line 7830

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