Class: SyntaxTree::StringContent

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

Overview

StringContent represents the contents of a string-like value.

"string"

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#format, #pretty_print, #to_json

Constructor Details

#initialize(parts:, location:) ⇒ StringContent

Returns a new instance of StringContent.



7983
7984
7985
7986
# File 'lib/syntax_tree/node.rb', line 7983

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

Instance Attribute Details

#partsObject (readonly)

Array[ StringEmbExpr | StringDVar | TStringContent ]

the parts of the

string



7981
7982
7983
# File 'lib/syntax_tree/node.rb', line 7981

def parts
  @parts
end

Instance Method Details

#accept(visitor) ⇒ Object



7988
7989
7990
# File 'lib/syntax_tree/node.rb', line 7988

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

#child_nodesObject Also known as: deconstruct



7992
7993
7994
# File 'lib/syntax_tree/node.rb', line 7992

def child_nodes
  parts
end

#deconstruct_keys(keys) ⇒ Object



7998
7999
8000
# File 'lib/syntax_tree/node.rb', line 7998

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