Class: SyntaxTree::RBracket
Overview
RBracket represents the use of a right bracket, i.e., ].
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- String
-
the right bracket.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
-
#initialize(value:, location:) ⇒ RBracket
constructor
A new instance of RBracket.
Methods inherited from Node
#construct_keys, #format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ RBracket
Returns a new instance of RBracket.
7349 7350 7351 7352 |
# File 'lib/syntax_tree/node.rb', line 7349 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the right bracket
7347 7348 7349 |
# File 'lib/syntax_tree/node.rb', line 7347 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
7354 7355 7356 |
# File 'lib/syntax_tree/node.rb', line 7354 def accept(visitor) visitor.visit_rbracket(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7358 7359 7360 |
# File 'lib/syntax_tree/node.rb', line 7358 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
7364 7365 7366 |
# File 'lib/syntax_tree/node.rb', line 7364 def deconstruct_keys(_keys) { value: value, location: location } end |