Class: Prism::GlobalVariableReadNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
ext/prism/api_node.c

Overview

Represents referencing a global variable.

$foo
^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, name) ⇒ GlobalVariableReadNode

Initialize a new GlobalVariableReadNode node.



6927
6928
6929
6930
6931
6932
6933
# File 'lib/prism/node.rb', line 6927

def initialize(source, node_id, location, flags, name)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

The name of the global variable, which is a ‘$` followed by an [identifier](github.com/ruby/prism/blob/main/docs/parsing_rules.md#identifier). Alternatively, it can be one of the special global variables designated by a symbol.

$foo   # name `:$foo`

$_Test # name `:$_Test`


6973
6974
6975
# File 'lib/prism/node.rb', line 6973

def name
  @name
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See ‘Node::type`.



6986
6987
6988
# File 'lib/prism/node.rb', line 6986

def self.type
  :global_variable_read_node
end

Instance Method Details

#===(other) ⇒ Object

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.



6992
6993
6994
6995
# File 'lib/prism/node.rb', line 6992

def ===(other)
  other.is_a?(GlobalVariableReadNode) &&
    (name === other.name)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



6936
6937
6938
# File 'lib/prism/node.rb', line 6936

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array[nil | Node]



6941
6942
6943
# File 'lib/prism/node.rb', line 6941

def child_nodes
  []
end

#comment_targetsObject

def comment_targets: () -> Array[Node | Location]



6951
6952
6953
# File 'lib/prism/node.rb', line 6951

def comment_targets
  [] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



6946
6947
6948
# File 'lib/prism/node.rb', line 6946

def compact_child_nodes
  []
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol) -> GlobalVariableReadNode



6956
6957
6958
# File 'lib/prism/node.rb', line 6956

def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name)
  GlobalVariableReadNode.new(source, node_id, location, flags, name)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol }



6964
6965
6966
# File 'lib/prism/node.rb', line 6964

def deconstruct_keys(keys)
  { node_id: node_id, location: location, name: name }
end

#inspectObject

def inspect -> String



6976
6977
6978
# File 'lib/prism/node.rb', line 6976

def inspect
  InspectVisitor.compose(self)
end

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



6981
6982
6983
# File 'lib/prism/node.rb', line 6981

def type
  :global_variable_read_node
end