Class: SyntaxTree::StringContent

Inherits:
Object
  • Object
show all
Defined in:
lib/syntax_tree.rb

Overview

StringContent represents the contents of a string-like value.

"string"

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#locationObject (readonly)

Location

the location of this node



10952
10953
10954
# File 'lib/syntax_tree.rb', line 10952

def location
  @location
end

#partsObject (readonly)

Array[ StringEmbExpr | StringDVar | TStringContent ]

the parts of the

string



10949
10950
10951
# File 'lib/syntax_tree.rb', line 10949

def parts
  @parts
end