Class: SyntaxTree::LBrace
Overview
LBrace represents the use of a left brace, i.e., {.
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- String
-
the left brace.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(value:, location:, comments: []) ⇒ LBrace
constructor
A new instance of LBrace.
Methods inherited from Node
Constructor Details
#initialize(value:, location:, comments: []) ⇒ LBrace
Returns a new instance of LBrace.
5352 5353 5354 5355 5356 |
# File 'lib/syntax_tree/node.rb', line 5352 def initialize(value:, location:, comments: []) @value = value @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
5350 5351 5352 |
# File 'lib/syntax_tree/node.rb', line 5350 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the left brace
5347 5348 5349 |
# File 'lib/syntax_tree/node.rb', line 5347 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
5358 5359 5360 |
# File 'lib/syntax_tree/node.rb', line 5358 def accept(visitor) visitor.visit_lbrace(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
5362 5363 5364 |
# File 'lib/syntax_tree/node.rb', line 5362 def child_nodes [] end |
#deconstruct_keys(keys) ⇒ Object
5368 5369 5370 |
# File 'lib/syntax_tree/node.rb', line 5368 def deconstruct_keys(keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
5372 5373 5374 |
# File 'lib/syntax_tree/node.rb', line 5372 def format(q) q.text(value) end |