Class: SyntaxTree::Comma

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

Overview

Comma represents the use of the , operator.

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

Returns a new instance of Comma.



2903
2904
2905
2906
# File 'lib/syntax_tree/node.rb', line 2903

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

Instance Attribute Details

#valueObject (readonly)

String

the comma in the string



2901
2902
2903
# File 'lib/syntax_tree/node.rb', line 2901

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



2908
2909
2910
# File 'lib/syntax_tree/node.rb', line 2908

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

#child_nodesObject Also known as: deconstruct



2912
2913
2914
# File 'lib/syntax_tree/node.rb', line 2912

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



2918
2919
2920
# File 'lib/syntax_tree/node.rb', line 2918

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