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.



2914
2915
2916
2917
# File 'lib/syntax_tree/node.rb', line 2914

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

Instance Attribute Details

#valueObject (readonly)

String

the comma in the string



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

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



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

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

#child_nodesObject Also known as: deconstruct



2923
2924
2925
# File 'lib/syntax_tree/node.rb', line 2923

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



2929
2930
2931
# File 'lib/syntax_tree/node.rb', line 2929

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