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.



11030
11031
11032
11033
# File 'lib/syntax_tree.rb', line 11030

def initialize(parts:, location:)
  @parts = parts
  @location = location
end

Instance Attribute Details

#locationObject (readonly)

Location

the location of this node



11028
11029
11030
# File 'lib/syntax_tree.rb', line 11028

def location
  @location
end

#partsObject (readonly)

Array[ StringEmbExpr | StringDVar | TStringContent ]

the parts of the

string



11025
11026
11027
# File 'lib/syntax_tree.rb', line 11025

def parts
  @parts
end