Class: SyntaxTree::KwRestParam
Overview
KwRestParam represents defining a parameter in a method definition that accepts all remaining keyword parameters.
def method(**kwargs) end
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#name ⇒ Object
readonly
- nil | Ident
-
the name of the parameter.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(name:, location:, comments: []) ⇒ KwRestParam
constructor
A new instance of KwRestParam.
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
#comments ⇒ Object (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 |
#name ⇒ Object (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_nodes ⇒ Object 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 |