Class: SyntaxTree::StringConcat
Overview
StringConcat represents concatenating two strings together using a backward slash.
"first" \
"second"
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#left ⇒ Object
readonly
- StringConcat | StringLiteral
-
the left side of the concatenation.
-
#right ⇒ Object
readonly
- StringLiteral
-
the right side of the concatenation.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(left:, right:, location:, comments: []) ⇒ StringConcat
constructor
A new instance of StringConcat.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(left:, right:, location:, comments: []) ⇒ StringConcat
Returns a new instance of StringConcat.
8304 8305 8306 8307 8308 8309 |
# File 'lib/syntax_tree/node.rb', line 8304 def initialize(left:, right:, location:, comments: []) @left = left @right = right @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
8302 8303 8304 |
# File 'lib/syntax_tree/node.rb', line 8302 def comments @comments end |
#left ⇒ Object (readonly)
- StringConcat | StringLiteral
-
the left side of the concatenation
8296 8297 8298 |
# File 'lib/syntax_tree/node.rb', line 8296 def left @left end |
#right ⇒ Object (readonly)
- StringLiteral
-
the right side of the concatenation
8299 8300 8301 |
# File 'lib/syntax_tree/node.rb', line 8299 def right @right end |
Instance Method Details
#accept(visitor) ⇒ Object
8311 8312 8313 |
# File 'lib/syntax_tree/node.rb', line 8311 def accept(visitor) visitor.visit_string_concat(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
8315 8316 8317 |
# File 'lib/syntax_tree/node.rb', line 8315 def child_nodes [left, right] end |
#deconstruct_keys(_keys) ⇒ Object
8321 8322 8323 |
# File 'lib/syntax_tree/node.rb', line 8321 def deconstruct_keys(_keys) { left: left, right: right, location: location, comments: comments } end |
#format(q) ⇒ Object
8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 |
# File 'lib/syntax_tree/node.rb', line 8325 def format(q) q.group do q.format(left) q.text(" \\") q.indent do q.breakable(force: true) q.format(right) end end end |