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
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ LBrace
Returns a new instance of LBrace.
6125 6126 6127 6128 6129 |
# File 'lib/syntax_tree/node.rb', line 6125 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
6123 6124 6125 |
# File 'lib/syntax_tree/node.rb', line 6123 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the left brace
6120 6121 6122 |
# File 'lib/syntax_tree/node.rb', line 6120 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
6131 6132 6133 |
# File 'lib/syntax_tree/node.rb', line 6131 def accept(visitor) visitor.visit_lbrace(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
6135 6136 6137 |
# File 'lib/syntax_tree/node.rb', line 6135 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
6141 6142 6143 |
# File 'lib/syntax_tree/node.rb', line 6141 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
6145 6146 6147 |
# File 'lib/syntax_tree/node.rb', line 6145 def format(q) q.text(value) end |