Class: SyntaxTree::SymbolsBeg

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

Overview

SymbolsBeg represents the start of a symbol array literal with interpolation.

%I[one two three]

In the snippet above, SymbolsBeg 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:) ⇒ SymbolsBeg

Returns a new instance of SymbolsBeg.



8547
8548
8549
8550
# File 'lib/syntax_tree/node.rb', line 8547

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

Instance Attribute Details

#valueObject (readonly)

String

the beginning of the symbol literal array



8545
8546
8547
# File 'lib/syntax_tree/node.rb', line 8545

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



8552
8553
8554
# File 'lib/syntax_tree/node.rb', line 8552

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

#child_nodesObject Also known as: deconstruct



8556
8557
8558
# File 'lib/syntax_tree/node.rb', line 8556

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



8562
8563
8564
# File 'lib/syntax_tree/node.rb', line 8562

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