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

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #format, #pretty_print, #to_json

Constructor Details

#initialize(parts:, location:) ⇒ XString

Returns a new instance of XString.



9873
9874
9875
9876
# File 'lib/syntax_tree/node.rb', line 9873

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

Instance Attribute Details

#partsObject (readonly)

Array[ StringEmbExpr | StringDVar | TStringContent ]

the parts of the

xstring



9871
9872
9873
# File 'lib/syntax_tree/node.rb', line 9871

def parts
  @parts
end

Instance Method Details

#accept(visitor) ⇒ Object



9878
9879
9880
# File 'lib/syntax_tree/node.rb', line 9878

def accept(visitor)
  visitor.visit_xstring(self)
end

#child_nodesObject Also known as: deconstruct



9882
9883
9884
# File 'lib/syntax_tree/node.rb', line 9882

def child_nodes
  parts
end

#deconstruct_keys(_keys) ⇒ Object



9888
9889
9890
# File 'lib/syntax_tree/node.rb', line 9888

def deconstruct_keys(_keys)
  { parts: parts, location: location }
end