Class: SyntaxTree::QSymbols
Overview
QSymbols represents a symbol literal array without interpolation.
i[one two three]
Instance Attribute Summary collapse
-
#beginning ⇒ Object
readonly
- QSymbolsBeg
-
the token that opens this array literal.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#elements ⇒ Object
readonly
- Array[ TStringContent ]
-
the elements of the array.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(beginning:, elements:, location:, comments: []) ⇒ QSymbols
constructor
A new instance of QSymbols.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(beginning:, elements:, location:, comments: []) ⇒ QSymbols
Returns a new instance of QSymbols.
7115 7116 7117 7118 7119 7120 |
# File 'lib/syntax_tree/node.rb', line 7115 def initialize(beginning:, elements:, location:, comments: []) @beginning = beginning @elements = elements @location = location @comments = comments end |
Instance Attribute Details
#beginning ⇒ Object (readonly)
- QSymbolsBeg
-
the token that opens this array literal
7107 7108 7109 |
# File 'lib/syntax_tree/node.rb', line 7107 def beginning @beginning end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
7113 7114 7115 |
# File 'lib/syntax_tree/node.rb', line 7113 def comments @comments end |
#elements ⇒ Object (readonly)
- Array[ TStringContent ]
-
the elements of the array
7110 7111 7112 |
# File 'lib/syntax_tree/node.rb', line 7110 def elements @elements end |
Instance Method Details
#accept(visitor) ⇒ Object
7122 7123 7124 |
# File 'lib/syntax_tree/node.rb', line 7122 def accept(visitor) visitor.visit_qsymbols(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7126 7127 7128 |
# File 'lib/syntax_tree/node.rb', line 7126 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
7132 7133 7134 7135 7136 7137 7138 7139 |
# File 'lib/syntax_tree/node.rb', line 7132 def deconstruct_keys(_keys) { beginning: beginning, elements: elements, location: location, comments: comments } end |
#format(q) ⇒ Object
7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 |
# File 'lib/syntax_tree/node.rb', line 7141 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 |