Class: SyntaxTree::AryPtn::RestFormatter
- Inherits:
-
Object
- Object
- SyntaxTree::AryPtn::RestFormatter
- Defined in:
- lib/syntax_tree/node.rb
Overview
Formats the optional splat of an array pattern.
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- VarField
-
the identifier that represents the remaining positionals.
Instance Method Summary collapse
- #comments ⇒ Object
- #format(q) ⇒ Object
-
#initialize(value) ⇒ RestFormatter
constructor
A new instance of RestFormatter.
Constructor Details
#initialize(value) ⇒ RestFormatter
Returns a new instance of RestFormatter.
1288 1289 1290 |
# File 'lib/syntax_tree/node.rb', line 1288 def initialize(value) @value = value end |
Instance Attribute Details
#value ⇒ Object (readonly)
- VarField
-
the identifier that represents the remaining positionals
1286 1287 1288 |
# File 'lib/syntax_tree/node.rb', line 1286 def value @value end |
Instance Method Details
#comments ⇒ Object
1292 1293 1294 |
# File 'lib/syntax_tree/node.rb', line 1292 def comments value.comments end |
#format(q) ⇒ Object
1296 1297 1298 1299 |
# File 'lib/syntax_tree/node.rb', line 1296 def format(q) q.text("*") q.format(value) end |