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
Constructor Details
#initialize(value:, location:, comments: []) ⇒ CVar
Returns a new instance of CVar.
3299 3300 3301 3302 3303 |
# File 'lib/syntax_tree/node.rb', line 3299 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
3297 3298 3299 |
# File 'lib/syntax_tree/node.rb', line 3297 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the name of the class variable
3294 3295 3296 |
# File 'lib/syntax_tree/node.rb', line 3294 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
3305 3306 3307 |
# File 'lib/syntax_tree/node.rb', line 3305 def accept(visitor) visitor.visit_cvar(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
3309 3310 3311 |
# File 'lib/syntax_tree/node.rb', line 3309 def child_nodes [] end |
#deconstruct_keys(keys) ⇒ Object
3315 3316 3317 |
# File 'lib/syntax_tree/node.rb', line 3315 def deconstruct_keys(keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
3319 3320 3321 |
# File 'lib/syntax_tree/node.rb', line 3319 def format(q) q.text(value) end |