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
#format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ RBracket
Returns a new instance of RBracket.
7094 7095 7096 7097 |
# File 'lib/syntax_tree/node.rb', line 7094 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the right bracket
7092 7093 7094 |
# File 'lib/syntax_tree/node.rb', line 7092 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
7099 7100 7101 |
# File 'lib/syntax_tree/node.rb', line 7099 def accept(visitor) visitor.visit_rbracket(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7103 7104 7105 |
# File 'lib/syntax_tree/node.rb', line 7103 def child_nodes [] end |
#deconstruct_keys(keys) ⇒ Object
7109 7110 7111 |
# File 'lib/syntax_tree/node.rb', line 7109 def deconstruct_keys(keys) { value: value, location: location } end |