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.
7988 7989 7990 7991 |
# File 'lib/syntax_tree/node.rb', line 7988 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the parenthesis
7986 7987 7988 |
# File 'lib/syntax_tree/node.rb', line 7986 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
7993 7994 7995 |
# File 'lib/syntax_tree/node.rb', line 7993 def accept(visitor) visitor.visit_rparen(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7997 7998 7999 |
# File 'lib/syntax_tree/node.rb', line 7997 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
8003 8004 8005 |
# File 'lib/syntax_tree/node.rb', line 8003 def deconstruct_keys(_keys) { value: value, location: location } end |