Class: SyntaxTree::StringContent
- Inherits:
-
Object
- Object
- SyntaxTree::StringContent
- Defined in:
- lib/syntax_tree.rb
Overview
StringContent represents the contents of a string-like value.
"string"
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
- Location
-
the location of this node.
-
#parts ⇒ Object
readonly
- Array[ StringEmbExpr | StringDVar | TStringContent ]
-
the parts of the string.
Instance Method Summary collapse
-
#initialize(parts:, location:) ⇒ StringContent
constructor
A new instance of StringContent.
Constructor Details
#initialize(parts:, location:) ⇒ StringContent
Returns a new instance of StringContent.
10954 10955 10956 10957 |
# File 'lib/syntax_tree.rb', line 10954 def initialize(parts:, location:) @parts = parts @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
- Location
-
the location of this node
10952 10953 10954 |
# File 'lib/syntax_tree.rb', line 10952 def location @location end |
#parts ⇒ Object (readonly)
- Array[ StringEmbExpr | StringDVar | TStringContent ]
-
the parts of the
string
10949 10950 10951 |
# File 'lib/syntax_tree.rb', line 10949 def parts @parts end |