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
Constructor Details
#initialize(name:, location:, comments: []) ⇒ KwRestParam
Returns a new instance of KwRestParam.
5166 5167 5168 5169 5170 |
# File 'lib/syntax_tree/node.rb', line 5166 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
5164 5165 5166 |
# File 'lib/syntax_tree/node.rb', line 5164 def comments @comments end |
#name ⇒ Object (readonly)
- nil | Ident
-
the name of the parameter
5161 5162 5163 |
# File 'lib/syntax_tree/node.rb', line 5161 def name @name end |
Instance Method Details
#accept(visitor) ⇒ Object
5172 5173 5174 |
# File 'lib/syntax_tree/node.rb', line 5172 def accept(visitor) visitor.visit_kwrest_param(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
5176 5177 5178 |
# File 'lib/syntax_tree/node.rb', line 5176 def child_nodes [name] end |
#deconstruct_keys(keys) ⇒ Object
5182 5183 5184 |
# File 'lib/syntax_tree/node.rb', line 5182 def deconstruct_keys(keys) { name: name, location: location, comments: comments } end |
#format(q) ⇒ Object
5186 5187 5188 5189 |
# File 'lib/syntax_tree/node.rb', line 5186 def format(q) q.text("**") q.format(name) if name end |