Class: SyntaxTree::GVar
Overview
GVar represents a global variable literal.
$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 global 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: []) ⇒ GVar
constructor
A new instance of GVar.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ GVar
Returns a new instance of GVar.
4688 4689 4690 4691 4692 |
# File 'lib/syntax_tree/node.rb', line 4688 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
4686 4687 4688 |
# File 'lib/syntax_tree/node.rb', line 4686 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the name of the global variable
4683 4684 4685 |
# File 'lib/syntax_tree/node.rb', line 4683 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
4694 4695 4696 |
# File 'lib/syntax_tree/node.rb', line 4694 def accept(visitor) visitor.visit_gvar(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
4698 4699 4700 |
# File 'lib/syntax_tree/node.rb', line 4698 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
4704 4705 4706 |
# File 'lib/syntax_tree/node.rb', line 4704 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
4708 4709 4710 |
# File 'lib/syntax_tree/node.rb', line 4708 def format(q) q.text(value) end |