Class: SyntaxTree::QSymbolsBeg

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

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

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #format, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:) ⇒ QSymbolsBeg

Returns a new instance of QSymbolsBeg.



7130
7131
7132
7133
# File 'lib/syntax_tree/node.rb', line 7130

def initialize(value:, location:)
  @value = value
  @location = location
end

Instance Attribute Details

#valueObject (readonly)

String

the beginning of the array literal



7128
7129
7130
# File 'lib/syntax_tree/node.rb', line 7128

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7135
7136
7137
# File 'lib/syntax_tree/node.rb', line 7135

def accept(visitor)
  visitor.visit_qsymbols_beg(self)
end

#child_nodesObject Also known as: deconstruct



7139
7140
7141
# File 'lib/syntax_tree/node.rb', line 7139

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



7145
7146
7147
# File 'lib/syntax_tree/node.rb', line 7145

def deconstruct_keys(_keys)
  { value: value, location: location }
end