class YARP::LocalVariableOperatorWriteNode
^^^^^^^^^^^^^^^
target += value
Represents assigning to a local variable using an operator that isn’t ‘=`.
def accept(visitor)
def accept(visitor) visitor.visit_local_variable_operator_write_node(self) end
def child_nodes
def child_nodes [value] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { name_loc: name_loc, operator_loc: operator_loc, value: value, constant_id: constant_id, operator_id: operator_id, location: location } end
def initialize(name_loc, operator_loc, value, constant_id, operator_id, location)
def initialize(name_loc, operator_loc, value, constant_id, operator_id, location) @name_loc = name_loc @operator_loc = operator_loc @value = value @constant_id = constant_id @operator_id = operator_id @location = location end
def name
def name name_loc.slice end
def operator
def operator operator_loc.slice end