class YARP::LocalVariableWriteNode
^^^^^^^
foo = 1
Represents writing to a local variable.
def accept(visitor)
def accept(visitor) visitor.visit_local_variable_write_node(self) end
def child_nodes
def child_nodes [value] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { constant_id: constant_id, depth: depth, value: value, name_loc: name_loc, operator_loc: operator_loc, location: location } end
def initialize(constant_id, depth, value, name_loc, operator_loc, location)
def initialize(constant_id, depth, value, name_loc, operator_loc, location) @constant_id = constant_id @depth = depth @value = value @name_loc = name_loc @operator_loc = operator_loc @location = location end
def name
def name name_loc.slice end
def operator
def operator operator_loc&.slice end