class YARP::AndWriteNode
^^^^^^^^^^^^^^^^
target &&= value
Represents the use of the ‘&&=` operator.
def accept(visitor)
def accept(visitor) visitor.visit_and_write_node(self) end
def child_nodes
def child_nodes [target, value] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { target: target, value: value, operator_loc: operator_loc, location: location } end
def initialize(target, value, operator_loc, location)
def initialize(target, value, operator_loc, location) @target = target @value = value @operator_loc = operator_loc @location = location end
def operator
def operator operator_loc.slice end