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.



7991
7992
7993
7994
# File 'lib/syntax_tree/node.rb', line 7991

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

Instance Attribute Details

#valueObject (readonly)

String

the parenthesis



7989
7990
7991
# File 'lib/syntax_tree/node.rb', line 7989

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7996
7997
7998
# File 'lib/syntax_tree/node.rb', line 7996

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

#child_nodesObject Also known as: deconstruct



8000
8001
8002
# File 'lib/syntax_tree/node.rb', line 8000

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



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

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