Class: SyntaxTree::QWordsBeg
Overview
QWordsBeg represents the beginning of a string literal array.
%w[one two three]
In the snippet above, QWordsBeg represents the “%w[” token. Note that these kinds of arrays can start with a lot of different delimiter types (e.g., %w| or %w<).
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:) ⇒ QWordsBeg
constructor
A new instance of QWordsBeg.
Methods inherited from Node
#construct_keys, #format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ QWordsBeg
Returns a new instance of QWordsBeg.
7260 7261 7262 7263 |
# File 'lib/syntax_tree/node.rb', line 7260 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the beginning of the array literal
7258 7259 7260 |
# File 'lib/syntax_tree/node.rb', line 7258 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
7265 7266 7267 |
# File 'lib/syntax_tree/node.rb', line 7265 def accept(visitor) visitor.visit_qwords_beg(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7269 7270 7271 |
# File 'lib/syntax_tree/node.rb', line 7269 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
7275 7276 7277 |
# File 'lib/syntax_tree/node.rb', line 7275 def deconstruct_keys(_keys) { value: value, location: location } end |