Class: SyntaxTree::Words

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

Overview

Words represents a string literal array with interpolation.

%W[one two three]

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #end_char, #pretty_print, #start_char, #to_json, #to_mermaid

Constructor Details

#initialize(beginning:, elements:, location:) ⇒ Words

Returns a new instance of Words.



12070
12071
12072
12073
12074
12075
# File 'lib/syntax_tree/node.rb', line 12070

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

Instance Attribute Details

#beginningObject (readonly)

WordsBeg

the token that opens this array literal



12062
12063
12064
# File 'lib/syntax_tree/node.rb', line 12062

def beginning
  @beginning
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



12068
12069
12070
# File 'lib/syntax_tree/node.rb', line 12068

def comments
  @comments
end

#elementsObject (readonly)

Array[ Word ]

the elements of this array



12065
12066
12067
# File 'lib/syntax_tree/node.rb', line 12065

def elements
  @elements
end

Instance Method Details

#===(other) ⇒ Object



12126
12127
12128
12129
# File 'lib/syntax_tree/node.rb', line 12126

def ===(other)
  other.is_a?(Words) && beginning === other.beginning &&
    ArrayMatch.call(elements, other.elements)
end

#accept(visitor) ⇒ Object



12077
12078
12079
# File 'lib/syntax_tree/node.rb', line 12077

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

#child_nodesObject Also known as: deconstruct



12081
12082
12083
# File 'lib/syntax_tree/node.rb', line 12081

def child_nodes
  []
end

#copy(beginning: nil, elements: nil, location: nil) ⇒ Object



12085
12086
12087
12088
12089
12090
12091
# File 'lib/syntax_tree/node.rb', line 12085

def copy(beginning: nil, elements: nil, location: nil)
  Words.new(
    beginning: beginning || self.beginning,
    elements: elements || self.elements,
    location: location || self.location
  )
end

#deconstruct_keys(_keys) ⇒ Object



12095
12096
12097
12098
12099
12100
12101
12102
# File 'lib/syntax_tree/node.rb', line 12095

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

#format(q) ⇒ Object



12104
12105
12106
12107
12108
12109
12110
12111
12112
12113
12114
12115
12116
12117
12118
12119
12120
12121
12122
12123
12124
# File 'lib/syntax_tree/node.rb', line 12104

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

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

  q.text(opening)
  q.group do
    q.indent do
      q.breakable_empty
      q.seplist(
        elements,
        ArrayLiteral::BREAKABLE_SPACE_SEPARATOR
      ) { |element| q.format(element) }
    end
    q.breakable_empty
  end
  q.text(closing)
end