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.



7949
7950
7951
7952
# File 'lib/syntax_tree/node.rb', line 7949

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

Instance Attribute Details

#valueObject (readonly)

String

the parenthesis



7947
7948
7949
# File 'lib/syntax_tree/node.rb', line 7947

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7954
7955
7956
# File 'lib/syntax_tree/node.rb', line 7954

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

#child_nodesObject Also known as: deconstruct



7958
7959
7960
# File 'lib/syntax_tree/node.rb', line 7958

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



7964
7965
7966
# File 'lib/syntax_tree/node.rb', line 7964

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