Class: SyntaxTree::TStringEnd

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

Overview

TStringEnd represents the end of a string literal.

"string"

In the example above, TStringEnd represents the second set of quotes. Strings can also use single quotes. They can also be declared using the %q and %Q syntax, as in:

%q{string}

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(value:, location:) ⇒ TStringEnd

Returns a new instance of TStringEnd.



8973
8974
8975
8976
# File 'lib/syntax_tree/node.rb', line 8973

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

Instance Attribute Details

#valueObject (readonly)

String

the end of the string



8971
8972
8973
# File 'lib/syntax_tree/node.rb', line 8971

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



8978
8979
8980
# File 'lib/syntax_tree/node.rb', line 8978

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

#child_nodesObject Also known as: deconstruct



8982
8983
8984
# File 'lib/syntax_tree/node.rb', line 8982

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



8988
8989
8990
# File 'lib/syntax_tree/node.rb', line 8988

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