Class: SyntaxTree::QWordsBeg

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

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

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:) ⇒ QWordsBeg

Returns a new instance of QWordsBeg.



7221
7222
7223
7224
# File 'lib/syntax_tree/node.rb', line 7221

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

Instance Attribute Details

#valueObject (readonly)

String

the beginning of the array literal



7219
7220
7221
# File 'lib/syntax_tree/node.rb', line 7219

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7226
7227
7228
# File 'lib/syntax_tree/node.rb', line 7226

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

#child_nodesObject Also known as: deconstruct



7230
7231
7232
# File 'lib/syntax_tree/node.rb', line 7230

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



7236
7237
7238
# File 'lib/syntax_tree/node.rb', line 7236

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