class YARP::LocalVariableOperatorAndWriteNode
^^^^^^^^^^^^^^^^
target &&= value
Represents the use of the ‘&&=` operator for assignment to a local variable.
def accept(visitor)
def accept(visitor) visitor.visit_local_variable_operator_and_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, location: location } end
def initialize(name_loc, operator_loc, value, constant_id, location)
def initialize(name_loc, operator_loc, value, constant_id, location) @name_loc = name_loc @operator_loc = operator_loc @value = value @constant_id = constant_id @location = location end
def name
def name name_loc.slice end
def operator
def operator operator_loc.slice end