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.
5849 5850 5851 5852 5853 |
# File 'lib/syntax_tree/node.rb', line 5849 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
5847 5848 5849 |
# File 'lib/syntax_tree/node.rb', line 5847 def comments @comments end |
#name ⇒ Object (readonly)
- nil | Ident
-
the name of the parameter
5844 5845 5846 |
# File 'lib/syntax_tree/node.rb', line 5844 def name @name end |
Instance Method Details
#accept(visitor) ⇒ Object
5855 5856 5857 |
# File 'lib/syntax_tree/node.rb', line 5855 def accept(visitor) visitor.visit_kwrest_param(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
5859 5860 5861 |
# File 'lib/syntax_tree/node.rb', line 5859 def child_nodes [name] end |
#deconstruct_keys(_keys) ⇒ Object
5865 5866 5867 |
# File 'lib/syntax_tree/node.rb', line 5865 def deconstruct_keys(_keys) { name: name, location: location, comments: comments } end |
#format(q) ⇒ Object
5869 5870 5871 5872 |
# File 'lib/syntax_tree/node.rb', line 5869 def format(q) q.text("**") q.format(name) if name end |