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.



4634
4635
4636
4637
4638
# File 'lib/syntax_tree/node.rb', line 4634

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



4632
4633
4634
# File 'lib/syntax_tree/node.rb', line 4632

def comments
  @comments
end

#valueObject (readonly)

String

the name of the global variable



4629
4630
4631
# File 'lib/syntax_tree/node.rb', line 4629

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



4640
4641
4642
# File 'lib/syntax_tree/node.rb', line 4640

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

#child_nodesObject Also known as: deconstruct



4644
4645
4646
# File 'lib/syntax_tree/node.rb', line 4644

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



4650
4651
4652
# File 'lib/syntax_tree/node.rb', line 4650

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

#format(q) ⇒ Object



4654
4655
4656
# File 'lib/syntax_tree/node.rb', line 4654

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