Class: SyntaxTree::SymbolContent

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

Overview

SymbolContent represents symbol contents and is always the child of a SymbolLiteral node.

:symbol

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:) ⇒ SymbolContent

Returns a new instance of SymbolContent.



8416
8417
8418
8419
# File 'lib/syntax_tree/node.rb', line 8416

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

Instance Attribute Details

#valueObject (readonly)

Backtick | Const | CVar | GVar | Ident | IVar | Kw | Op

the value of the

symbol



8414
8415
8416
# File 'lib/syntax_tree/node.rb', line 8414

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



8421
8422
8423
# File 'lib/syntax_tree/node.rb', line 8421

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

#child_nodesObject Also known as: deconstruct



8425
8426
8427
# File 'lib/syntax_tree/node.rb', line 8425

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



8431
8432
8433
# File 'lib/syntax_tree/node.rb', line 8431

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