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
#format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ RParen
Returns a new instance of RParen.
7185 7186 7187 7188 |
# File 'lib/syntax_tree/node.rb', line 7185 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the parenthesis
7183 7184 7185 |
# File 'lib/syntax_tree/node.rb', line 7183 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
7190 7191 7192 |
# File 'lib/syntax_tree/node.rb', line 7190 def accept(visitor) visitor.visit_rparen(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7194 7195 7196 |
# File 'lib/syntax_tree/node.rb', line 7194 def child_nodes [] end |
#deconstruct_keys(keys) ⇒ Object
7200 7201 7202 |
# File 'lib/syntax_tree/node.rb', line 7200 def deconstruct_keys(keys) { value: value, location: location } end |