Class: SyntaxTree::RParen

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

Overview

RParen represents the use of a right parenthesis, i.e., ).

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

Returns a new instance of RParen.



7827
7828
7829
7830
# File 'lib/syntax_tree/node.rb', line 7827

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

Instance Attribute Details

#valueObject (readonly)

String

the parenthesis



7825
7826
7827
# File 'lib/syntax_tree/node.rb', line 7825

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7832
7833
7834
# File 'lib/syntax_tree/node.rb', line 7832

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

#child_nodesObject Also known as: deconstruct



7836
7837
7838
# File 'lib/syntax_tree/node.rb', line 7836

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



7842
7843
7844
# File 'lib/syntax_tree/node.rb', line 7842

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