Class: SyntaxTree::TStringEnd
Overview
TStringEnd represents the end of a string literal.
"string"
In the example above, TStringEnd represents the second set of quotes. Strings can also use single quotes. They can also be declared using the %q and %Q syntax, as in:
%q{string}
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- String
-
the end of the string.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
-
#initialize(value:, location:) ⇒ TStringEnd
constructor
A new instance of TStringEnd.
Methods inherited from Node
#construct_keys, #format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ TStringEnd
Returns a new instance of TStringEnd.
9190 9191 9192 9193 |
# File 'lib/syntax_tree/node.rb', line 9190 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the end of the string
9188 9189 9190 |
# File 'lib/syntax_tree/node.rb', line 9188 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
9195 9196 9197 |
# File 'lib/syntax_tree/node.rb', line 9195 def accept(visitor) visitor.visit_tstring_end(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
9199 9200 9201 |
# File 'lib/syntax_tree/node.rb', line 9199 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
9205 9206 9207 |
# File 'lib/syntax_tree/node.rb', line 9205 def deconstruct_keys(_keys) { value: value, location: location } end |