class Prism::LocalVariableWriteNode
Represents writing to a local variable.
foo = 1 ^^^^^^^
Public Class Methods
Source
# File lib/prism/node.rb, line 16654 def initialize(source, node_id, location, flags, name, depth, name_loc, value, operator_loc) @source = source @node_id = node_id @location = location @flags = flags @name = name @depth = depth @name_loc = name_loc @value = value @operator_loc = operator_loc end
Initialize a new LocalVariableWriteNode node.
Public Instance Methods
Source
# File lib/prism/node.rb, line 16756 def depth @depth end
The number of semantic scopes we have to traverse to find the declaration of this variable.
foo = 1 # depth 0 tap { foo = 1 } # depth 1
The specific rules for calculating the depth may differ from individual Ruby implementations, as they are not specified by the language. For more information, see the Prism documentation.
Source
# File lib/prism/node.rb, line 16742 def name @name end
The name of the local variable, which is an identifier.
foo = :bar # name `:foo` abc = 123 # name `:abc`
Source
# File lib/prism/node.rb, line 16795 def value @value end
The value to write to the local variable. It can be any non-void expression.
foo = :bar
^^^^
abc = 1234
^^^^
Note that since the name of a local variable is known before the value is parsed, it is valid for a local variable to appear within the value of its own write.
foo = foo
Locations
Public Instance Methods
Source
# File lib/prism/node.rb, line 16768 def name_loc location = @name_loc return location if location.is_a?(Location) @name_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
The Location of the variable name.
foo = :bar ^^^
Source
# File lib/prism/node.rb, line 16807 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
The Location of the = operator.
x = :y ^
Node Interface
Public Class Methods
Public Instance Methods
Source
# File lib/prism/node.rb, line 16678 def accept(visitor) visitor.visit_local_variable_write_node(self) end
See Node.accept.
Source
# File lib/prism/node.rb, line 16683 def child_nodes [value] end
See Node.child_nodes.
Source
# File lib/prism/node.rb, line 16700 def comment_targets [name_loc, value, operator_loc] #: Array[Prism::node | Location] end
See Node.comment_targets.
Source
# File lib/prism/node.rb, line 16695 def compact_child_nodes [value] end
Source
# File lib/prism/node.rb, line 16708 def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, depth: self.depth, name_loc: self.name_loc, value: self.value, operator_loc: self.operator_loc) LocalVariableWriteNode.new(source, node_id, location, flags, name, depth, name_loc, value, operator_loc) end
Creates a copy of self with the given fields, using self as the template.
Source
# File lib/prism/node.rb, line 16688 def each_child_node return to_enum(:each_child_node) unless block_given? yield value end
See Node.each_child_node.
Repository
Public Instance Methods
Source
# File lib/prism/node.rb, line 16777 def save_name_loc(repository) repository.enter(node_id, :name_loc) end
Save the name_loc location using the given saved source so that it can be retrieved later.
Source
# File lib/prism/node.rb, line 16816 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end
Save the operator_loc location using the given saved source so that it can be retrieved later.
Slicing
Public Instance Methods
Source
# File lib/prism/node.rb, line 16826 def operator operator_loc.slice end
Slice the location of operator_loc from the source.