Class: SyntaxTree::GVar

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

GVar represents a global variable literal.

$variable

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:, comments: []) ⇒ GVar

Returns a new instance of GVar.



4706
4707
4708
4709
4710
# File 'lib/syntax_tree/node.rb', line 4706

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



4704
4705
4706
# File 'lib/syntax_tree/node.rb', line 4704

def comments
  @comments
end

#valueObject (readonly)

String

the name of the global variable



4701
4702
4703
# File 'lib/syntax_tree/node.rb', line 4701

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



4712
4713
4714
# File 'lib/syntax_tree/node.rb', line 4712

def accept(visitor)
  visitor.visit_gvar(self)
end

#child_nodesObject Also known as: deconstruct



4716
4717
4718
# File 'lib/syntax_tree/node.rb', line 4716

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



4722
4723
4724
# File 'lib/syntax_tree/node.rb', line 4722

def deconstruct_keys(_keys)
  { value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



4726
4727
4728
# File 'lib/syntax_tree/node.rb', line 4726

def format(q)
  q.text(value)
end