class YARP::CallOperatorWriteNode
^^^^^^^^^^^^^^
foo.bar += baz
Represents the use of an assignment operator on a call.
def accept(visitor)
def accept(visitor) visitor.visit_call_operator_write_node(self) end
def child_nodes
def child_nodes [target, value] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { target: target, operator_loc: operator_loc, value: value, operator_id: operator_id, location: location } end
def initialize(target, operator_loc, value, operator_id, location)
def initialize(target, operator_loc, value, operator_id, location) @target = target @operator_loc = operator_loc @value = value @operator_id = operator_id @location = location end
def operator
def operator operator_loc.slice end