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

#format, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:) ⇒ RParen

Returns a new instance of RParen.



7727
7728
7729
7730
# File 'lib/syntax_tree/node.rb', line 7727

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

Instance Attribute Details

#valueObject (readonly)

String

the parenthesis



7725
7726
7727
# File 'lib/syntax_tree/node.rb', line 7725

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7732
7733
7734
# File 'lib/syntax_tree/node.rb', line 7732

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

#child_nodesObject Also known as: deconstruct



7736
7737
7738
# File 'lib/syntax_tree/node.rb', line 7736

def child_nodes
  []
end

#deconstruct_keys(keys) ⇒ Object



7742
7743
7744
# File 'lib/syntax_tree/node.rb', line 7742

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