Class: SyntaxTree::QSymbolsBeg
Overview
QSymbolsBeg represents the beginning of a symbol literal array.
%i[one two three]
In the snippet above, QSymbolsBeg represents the “%i[” token. Note that these kinds of arrays can start with a lot of different delimiter types (e.g., %i| or %i<).
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- String
-
the beginning of the array literal.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
-
#initialize(value:, location:) ⇒ QSymbolsBeg
constructor
A new instance of QSymbolsBeg.
Methods inherited from Node
#construct_keys, #format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ QSymbolsBeg
Returns a new instance of QSymbolsBeg.
7172 7173 7174 7175 |
# File 'lib/syntax_tree/node.rb', line 7172 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the beginning of the array literal
7170 7171 7172 |
# File 'lib/syntax_tree/node.rb', line 7170 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
7177 7178 7179 |
# File 'lib/syntax_tree/node.rb', line 7177 def accept(visitor) visitor.visit_qsymbols_beg(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7181 7182 7183 |
# File 'lib/syntax_tree/node.rb', line 7181 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
7187 7188 7189 |
# File 'lib/syntax_tree/node.rb', line 7187 def deconstruct_keys(_keys) { value: value, location: location } end |