class YARP::ConstantPathOperatorWriteNode

^^^^^^^^^^^^^^^^^^^^^^
Parent::Child += value
Represents assigning to a constant path using an operator that isn’t ‘=`.

def accept(visitor)

def accept: (visitor: Visitor) -> void
def accept(visitor)
  visitor.visit_constant_path_operator_write_node(self)
end

def child_nodes

def child_nodes: () -> Array[nil | Node]
def child_nodes
  [target, value]
end

def deconstruct_keys(keys)

def deconstruct_keys: (keys: Array[Symbol]) -> Hash[Symbol, nil | Node | Array[Node] | String | Token | Array[Token] | Location]
def deconstruct_keys(keys)
  { target: target, operator_loc: operator_loc, value: value, operator: operator, location: location }
end

def initialize(target, operator_loc, value, operator, location)

def initialize: (target: Node, operator_loc: Location, value: Node, operator: Symbol, location: Location) -> void
def initialize(target, operator_loc, value, operator, location)
  @target = target
  @operator_loc = operator_loc
  @value = value
  @operator = operator
  @location = location
end