class SyntaxTree::GVar
GVar
represents a global variable literal.
$variable
Attributes
value[R]
- String
-
the name of the global variable
Public Class Methods
new(value:, location:)
click to toggle source
# File lib/syntax_tree/node.rb, line 5607 def initialize(value:, location:) @value = value @location = location @comments = [] end
Public Instance Methods
===(other)
click to toggle source
# File lib/syntax_tree/node.rb, line 5642 def ===(other) other.is_a?(GVar) && value === other.value end
accept(visitor)
click to toggle source
# File lib/syntax_tree/node.rb, line 5613 def accept(visitor) visitor.visit_gvar(self) end
child_nodes()
click to toggle source
# File lib/syntax_tree/node.rb, line 5617 def child_nodes [] end
Also aliased as: deconstruct
copy(value: nil, location: nil)
click to toggle source
# File lib/syntax_tree/node.rb, line 5621 def copy(value: nil, location: nil) node = GVar.new( value: value || self.value, location: location || self.location ) node.comments.concat(comments.map(&:copy)) node end
deconstruct_keys(_keys)
click to toggle source
# File lib/syntax_tree/node.rb, line 5634 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end
format(q)
click to toggle source
# File lib/syntax_tree/node.rb, line 5638 def format(q) q.text(value) end