Class: SyntaxTree::LBracket
Overview
LBracket represents the use of a left bracket, i.e., [.
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- String
-
the left bracket.
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: []) ⇒ LBracket
constructor
A new instance of LBracket.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ LBracket
Returns a new instance of LBracket.
6155 6156 6157 6158 6159 |
# File 'lib/syntax_tree/node.rb', line 6155 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
6153 6154 6155 |
# File 'lib/syntax_tree/node.rb', line 6153 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the left bracket
6150 6151 6152 |
# File 'lib/syntax_tree/node.rb', line 6150 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
6161 6162 6163 |
# File 'lib/syntax_tree/node.rb', line 6161 def accept(visitor) visitor.visit_lbracket(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
6165 6166 6167 |
# File 'lib/syntax_tree/node.rb', line 6165 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
6171 6172 6173 |
# File 'lib/syntax_tree/node.rb', line 6171 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
6175 6176 6177 |
# File 'lib/syntax_tree/node.rb', line 6175 def format(q) q.text(value) end |