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.
7991 7992 7993 7994 |
# File 'lib/syntax_tree/node.rb', line 7991 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (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_nodes ⇒ Object 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 |