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
Constructor Details
#initialize(value:, location:, comments: []) ⇒ GVar
Returns a new instance of GVar.
4595 4596 4597 4598 4599 |
# File 'lib/syntax_tree/node.rb', line 4595 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
4593 4594 4595 |
# File 'lib/syntax_tree/node.rb', line 4593 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the name of the global variable
4590 4591 4592 |
# File 'lib/syntax_tree/node.rb', line 4590 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
4601 4602 4603 |
# File 'lib/syntax_tree/node.rb', line 4601 def accept(visitor) visitor.visit_gvar(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
4605 4606 4607 |
# File 'lib/syntax_tree/node.rb', line 4605 def child_nodes [] end |
#deconstruct_keys(keys) ⇒ Object
4611 4612 4613 |
# File 'lib/syntax_tree/node.rb', line 4611 def deconstruct_keys(keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
4615 4616 4617 |
# File 'lib/syntax_tree/node.rb', line 4615 def format(q) q.text(value) end |