Class: Prism::GlobalVariableWriteNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::GlobalVariableWriteNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents writing to a global variable.
$foo = 1
^^^^^^^^
Instance Attribute Summary collapse
-
#name ⇒ Object
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).
-
#value ⇒ Object
readonly
The value to write to the global variable.
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array.
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, value: self.value, operator_loc: self.operator_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location, ?value: Prism::node, ?operator_loc: Location) -> GlobalVariableWriteNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location, value: Prism::node, operator_loc: Location }.
-
#initialize(source, node_id, location, flags, name, name_loc, value, operator_loc) ⇒ GlobalVariableWriteNode
constructor
Initialize a new GlobalVariableWriteNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#name_loc ⇒ Object
The location of the global variable’s name.
-
#operator ⇒ Object
def operator: () -> String.
-
#operator_loc ⇒ Object
The location of the ‘=` operator.
-
#save_name_loc(repository) ⇒ Object
Save the name_loc location using the given saved source so that it can be retrieved later.
-
#save_operator_loc(repository) ⇒ Object
Save the operator_loc location using the given saved source so that it can be retrieved later.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, name, name_loc, value, operator_loc) ⇒ GlobalVariableWriteNode
Initialize a new GlobalVariableWriteNode node.
8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 |
# File 'lib/prism/node.rb', line 8109 def initialize(source, node_id, location, flags, name, name_loc, value, operator_loc) @source = source @node_id = node_id @location = location @flags = flags @name = name @name_loc = name_loc @value = value @operator_loc = operator_loc end |
Instance Attribute Details
#name ⇒ Object (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 = :bar # name `:$foo`
$_Test = 123 # name `:$_Test`
8158 8159 8160 |
# File 'lib/prism/node.rb', line 8158 def name @name end |
#value ⇒ Object (readonly)
The value to write to the global variable. It can be any [non-void expression](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).
$foo = :bar
^^^^
$-xyz = 123
^^^
8183 8184 8185 |
# File 'lib/prism/node.rb', line 8183 def value @value end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
8217 8218 8219 |
# File 'lib/prism/node.rb', line 8217 def self.type :global_variable_write_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.
8223 8224 8225 8226 8227 8228 8229 |
# File 'lib/prism/node.rb', line 8223 def ===(other) other.is_a?(GlobalVariableWriteNode) && (name === other.name) && (name_loc.nil? == other.name_loc.nil?) && (value === other.value) && (operator_loc.nil? == other.operator_loc.nil?) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
8121 8122 8123 |
# File 'lib/prism/node.rb', line 8121 def accept(visitor) visitor.visit_global_variable_write_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
8126 8127 8128 |
# File 'lib/prism/node.rb', line 8126 def child_nodes [value] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
8136 8137 8138 |
# File 'lib/prism/node.rb', line 8136 def comment_targets [name_loc, value, operator_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
8131 8132 8133 |
# File 'lib/prism/node.rb', line 8131 def compact_child_nodes [value] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, value: self.value, operator_loc: self.operator_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location, ?value: Prism::node, ?operator_loc: Location) -> GlobalVariableWriteNode
8141 8142 8143 |
# File 'lib/prism/node.rb', line 8141 def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, value: self.value, operator_loc: self.operator_loc) GlobalVariableWriteNode.new(source, node_id, location, flags, name, name_loc, value, operator_loc) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location, value: Prism::node, operator_loc: Location }
8149 8150 8151 |
# File 'lib/prism/node.rb', line 8149 def deconstruct_keys(keys) { node_id: node_id, location: location, name: name, name_loc: name_loc, value: value, operator_loc: operator_loc } end |
#inspect ⇒ Object
def inspect -> String
8207 8208 8209 |
# File 'lib/prism/node.rb', line 8207 def inspect InspectVisitor.compose(self) end |
#name_loc ⇒ Object
The location of the global variable’s name.
$foo = :bar
^^^^
8164 8165 8166 8167 8168 |
# File 'lib/prism/node.rb', line 8164 def name_loc location = @name_loc return location if location.is_a?(Location) @name_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#operator ⇒ Object
def operator: () -> String
8202 8203 8204 |
# File 'lib/prism/node.rb', line 8202 def operator operator_loc.slice end |
#operator_loc ⇒ Object
The location of the ‘=` operator.
$foo = :bar
^
8189 8190 8191 8192 8193 |
# File 'lib/prism/node.rb', line 8189 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#save_name_loc(repository) ⇒ Object
Save the name_loc location using the given saved source so that it can be retrieved later.
8172 8173 8174 |
# File 'lib/prism/node.rb', line 8172 def save_name_loc(repository) repository.enter(node_id, :name_loc) end |
#save_operator_loc(repository) ⇒ Object
Save the operator_loc location using the given saved source so that it can be retrieved later.
8197 8198 8199 |
# File 'lib/prism/node.rb', line 8197 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
8212 8213 8214 |
# File 'lib/prism/node.rb', line 8212 def type :global_variable_write_node end |