Class: SyntaxTree::QSymbols

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

Overview

QSymbols represents a symbol literal array without interpolation.

i[one two three]

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(beginning:, elements:, location:, comments: []) ⇒ QSymbols

Returns a new instance of QSymbols.



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

def initialize(beginning:, elements:, location:, comments: [])
  @beginning = beginning
  @elements = elements
  @location = location
  @comments = comments
end

Instance Attribute Details

#beginningObject (readonly)

QSymbolsBeg

the token that opens this array literal



7121
7122
7123
# File 'lib/syntax_tree/node.rb', line 7121

def beginning
  @beginning
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



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

def comments
  @comments
end

#elementsObject (readonly)

Array[ TStringContent ]

the elements of the array



7124
7125
7126
# File 'lib/syntax_tree/node.rb', line 7124

def elements
  @elements
end

Instance Method Details

#accept(visitor) ⇒ Object



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

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

#child_nodesObject Also known as: deconstruct



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

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



7146
7147
7148
7149
7150
7151
7152
7153
# File 'lib/syntax_tree/node.rb', line 7146

def deconstruct_keys(_keys)
  {
    beginning: beginning,
    elements: elements,
    location: location,
    comments: comments
  }
end

#format(q) ⇒ Object



7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
# File 'lib/syntax_tree/node.rb', line 7155

def format(q)
  opening, closing = "%i[", "]"

  if elements.any? { |element| element.match?(/[\[\]]/) }
    opening = beginning.value
    closing = Quotes.matching(opening[2])
  end

  q.group(0, opening, closing) do
    q.indent do
      q.breakable("")
      q.seplist(elements, -> { q.breakable }) do |element|
        q.format(element)
      end
    end
    q.breakable("")
  end
end