Class: SyntaxTree::LParen
Overview
LParen represents the use of a left parenthesis, i.e., (.
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- String
-
the left parenthesis.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(value:, location:, comments: []) ⇒ LParen
constructor
A new instance of LParen.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ LParen
Returns a new instance of LParen.
6191 6192 6193 6194 6195 |
# File 'lib/syntax_tree/node.rb', line 6191 def initialize(value:, location:, comments: []) @value = value @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
6189 6190 6191 |
# File 'lib/syntax_tree/node.rb', line 6189 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the left parenthesis
6186 6187 6188 |
# File 'lib/syntax_tree/node.rb', line 6186 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
6197 6198 6199 |
# File 'lib/syntax_tree/node.rb', line 6197 def accept(visitor) visitor.visit_lparen(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
6201 6202 6203 |
# File 'lib/syntax_tree/node.rb', line 6201 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
6207 6208 6209 |
# File 'lib/syntax_tree/node.rb', line 6207 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
6211 6212 6213 |
# File 'lib/syntax_tree/node.rb', line 6211 def format(q) q.text(value) end |