Class: SyntaxTree::MLHSParen
Overview
MLHSParen represents parentheses being used to destruct values in a multiple assignment on the left hand side.
(left, right) = value
Instance Attribute Summary collapse
-
#comma ⇒ Object
- boolean
-
whether or not there is a trailing comma at the end of this list, which impacts destructuring.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#contents ⇒ Object
readonly
- MLHS | MLHSParen
-
the contents inside of the parentheses.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(contents:, comma: false, location:, comments: []) ⇒ MLHSParen
constructor
A new instance of MLHSParen.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(contents:, comma: false, location:, comments: []) ⇒ MLHSParen
Returns a new instance of MLHSParen.
6304 6305 6306 6307 6308 6309 |
# File 'lib/syntax_tree/node.rb', line 6304 def initialize(contents:, comma: false, location:, comments: []) @contents = contents @comma = comma @location = location @comments = comments end |
Instance Attribute Details
#comma ⇒ Object
- boolean
-
whether or not there is a trailing comma at the end of this
list, which impacts destructuring. It’s an attr_accessor so that while the syntax tree is being built it can be set by its parent node
6299 6300 6301 |
# File 'lib/syntax_tree/node.rb', line 6299 def comma @comma end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
6302 6303 6304 |
# File 'lib/syntax_tree/node.rb', line 6302 def comments @comments end |
#contents ⇒ Object (readonly)
- MLHS | MLHSParen
-
the contents inside of the parentheses
6294 6295 6296 |
# File 'lib/syntax_tree/node.rb', line 6294 def contents @contents end |
Instance Method Details
#accept(visitor) ⇒ Object
6311 6312 6313 |
# File 'lib/syntax_tree/node.rb', line 6311 def accept(visitor) visitor.visit_mlhs_paren(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
6315 6316 6317 |
# File 'lib/syntax_tree/node.rb', line 6315 def child_nodes [contents] end |
#deconstruct_keys(_keys) ⇒ Object
6321 6322 6323 |
# File 'lib/syntax_tree/node.rb', line 6321 def deconstruct_keys(_keys) { contents: contents, location: location, comments: comments } end |
#format(q) ⇒ Object
6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 |
# File 'lib/syntax_tree/node.rb', line 6325 def format(q) parent = q.parent if parent.is_a?(MAssign) || parent.is_a?(MLHSParen) q.format(contents) q.text(",") if comma else q.group(0, "(", ")") do q.indent do q.breakable("") q.format(contents) end q.text(",") if comma q.breakable("") end end end |