Class: SyntaxTree::XString

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

Overview

XString represents the contents of an XStringLiteral.

`ls`

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#child_nodes, #deconstruct, #deconstruct_keys, #format, #pretty_print, #to_json

Constructor Details

#initialize(parts:, location:) ⇒ XString

Returns a new instance of XString.



11746
11747
11748
11749
# File 'lib/syntax_tree/node.rb', line 11746

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

Instance Attribute Details

#locationObject (readonly)

Location

the location of this node



11744
11745
11746
# File 'lib/syntax_tree/node.rb', line 11744

def location
  @location
end

#partsObject (readonly)

Array[ StringEmbExpr | StringDVar | TStringContent ]

the parts of the

xstring



11741
11742
11743
# File 'lib/syntax_tree/node.rb', line 11741

def parts
  @parts
end