Class: SyntaxTree::RParen
Overview
RParen represents the use of a right parenthesis, i.e., ).
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- String
-
the parenthesis.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
-
#initialize(value:, location:) ⇒ RParen
constructor
A new instance of RParen.
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
#value ⇒ Object (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_nodes ⇒ Object 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 |