Class: SyntaxTree::SymbolContent
Overview
SymbolContent represents symbol contents and is always the child of a SymbolLiteral node.
:symbol
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- Backtick | Const | CVar | GVar | Ident | IVar | Kw | Op
-
the value of the symbol.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
-
#initialize(value:, location:) ⇒ SymbolContent
constructor
A new instance of SymbolContent.
Methods inherited from Node
#construct_keys, #format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ SymbolContent
Returns a new instance of SymbolContent.
8493 8494 8495 8496 |
# File 'lib/syntax_tree/node.rb', line 8493 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- Backtick | Const | CVar | GVar | Ident | IVar | Kw | Op
-
the value of the
symbol
8491 8492 8493 |
# File 'lib/syntax_tree/node.rb', line 8491 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
8498 8499 8500 |
# File 'lib/syntax_tree/node.rb', line 8498 def accept(visitor) visitor.visit_symbol_content(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
8502 8503 8504 |
# File 'lib/syntax_tree/node.rb', line 8502 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
8508 8509 8510 |
# File 'lib/syntax_tree/node.rb', line 8508 def deconstruct_keys(_keys) { value: value, location: location } end |