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.
5690 5691 5692 5693 5694 |
# File 'lib/syntax_tree/node.rb', line 5690 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
5688 5689 5690 |
# File 'lib/syntax_tree/node.rb', line 5688 def comments @comments end |
#name ⇒ Object (readonly)
[nil | Ident] the name of the parameter
5685 5686 5687 |
# File 'lib/syntax_tree/node.rb', line 5685 def name @name end |
Instance Method Details
#accept(visitor) ⇒ Object
5696 5697 5698 |
# File 'lib/syntax_tree/node.rb', line 5696 def accept(visitor) visitor.visit_kwrest_param(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
5700 5701 5702 |
# File 'lib/syntax_tree/node.rb', line 5700 def child_nodes [name] end |
#deconstruct_keys(keys) ⇒ Object
5706 5707 5708 |
# File 'lib/syntax_tree/node.rb', line 5706 def deconstruct_keys(keys) { name: name, location: location, comments: comments } end |
#format(q) ⇒ Object
5710 5711 5712 5713 |
# File 'lib/syntax_tree/node.rb', line 5710 def format(q) q.text("**") q.format(name) if name end |