Class: SyntaxTree::QWords

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

Overview

QWords represents a string literal array without interpolation.

%w[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: []) ⇒ QWords

Returns a new instance of QWords.



7164
7165
7166
7167
7168
7169
# File 'lib/syntax_tree/node.rb', line 7164

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

Instance Attribute Details

#beginningObject (readonly)

QWordsBeg

the token that opens this array literal



7156
7157
7158
# File 'lib/syntax_tree/node.rb', line 7156

def beginning
  @beginning
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



7162
7163
7164
# File 'lib/syntax_tree/node.rb', line 7162

def comments
  @comments
end

#elementsObject (readonly)

Array[ TStringContent ]

the elements of the array



7159
7160
7161
# File 'lib/syntax_tree/node.rb', line 7159

def elements
  @elements
end

Instance Method Details

#accept(visitor) ⇒ Object



7171
7172
7173
# File 'lib/syntax_tree/node.rb', line 7171

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

#child_nodesObject Also known as: deconstruct



7175
7176
7177
# File 'lib/syntax_tree/node.rb', line 7175

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



7181
7182
7183
7184
7185
7186
7187
7188
# File 'lib/syntax_tree/node.rb', line 7181

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

#format(q) ⇒ Object



7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
# File 'lib/syntax_tree/node.rb', line 7190

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

  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