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.



8005
8006
8007
8008
# File 'lib/syntax_tree/node.rb', line 8005

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

Instance Attribute Details

#valueObject (readonly)

String

the parenthesis



8003
8004
8005
# File 'lib/syntax_tree/node.rb', line 8003

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



8010
8011
8012
# File 'lib/syntax_tree/node.rb', line 8010

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

#child_nodesObject Also known as: deconstruct



8014
8015
8016
# File 'lib/syntax_tree/node.rb', line 8014

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



8020
8021
8022
# File 'lib/syntax_tree/node.rb', line 8020

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