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
8203 8204 8205 8206 |
# File 'lib/syntax_tree/node.rb', line 8203 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the parenthesis
8201 8202 8203 |
# File 'lib/syntax_tree/node.rb', line 8201 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
8208 8209 8210 |
# File 'lib/syntax_tree/node.rb', line 8208 def accept(visitor) visitor.visit_rparen(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
8212 8213 8214 |
# File 'lib/syntax_tree/node.rb', line 8212 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
8218 8219 8220 |
# File 'lib/syntax_tree/node.rb', line 8218 def deconstruct_keys(_keys) { value: value, location: location } end |