Class: SyntaxTree::CVar
Overview
CVar represents the use of a class variable.
@@variable
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- String
-
the name of the class variable.
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: []) ⇒ CVar
constructor
A new instance of CVar.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ CVar
Returns a new instance of CVar.
3363 3364 3365 3366 3367 |
# File 'lib/syntax_tree/node.rb', line 3363 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
3361 3362 3363 |
# File 'lib/syntax_tree/node.rb', line 3361 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the name of the class variable
3358 3359 3360 |
# File 'lib/syntax_tree/node.rb', line 3358 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
3369 3370 3371 |
# File 'lib/syntax_tree/node.rb', line 3369 def accept(visitor) visitor.visit_cvar(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
3373 3374 3375 |
# File 'lib/syntax_tree/node.rb', line 3373 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
3379 3380 3381 |
# File 'lib/syntax_tree/node.rb', line 3379 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
3383 3384 3385 |
# File 'lib/syntax_tree/node.rb', line 3383 def format(q) q.text(value) end |