Class: SyntaxTree::Words
Overview
Words represents a string literal array with interpolation.
%W[one two three]
Instance Attribute Summary collapse
-
#beginning ⇒ Object
readonly
- WordsBeg
-
the token that opens this array literal.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#elements ⇒ Object
readonly
- Array[ Word ]
-
the elements of this array.
Attributes inherited from Node
Instance Method Summary collapse
- #===(other) ⇒ Object
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #copy(beginning: nil, elements: nil, location: nil) ⇒ Object
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(beginning:, elements:, location:) ⇒ Words
constructor
A new instance of Words.
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
#beginning ⇒ Object (readonly)
- WordsBeg
-
the token that opens this array literal
12062 12063 12064 |
# File 'lib/syntax_tree/node.rb', line 12062 def beginning @beginning end |
#comments ⇒ Object (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 |
#elements ⇒ Object (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_nodes ⇒ Object 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 |