class YARP::ConstantPathWriteNode
^^^^^^^^^^^^^^
::Foo::Bar = 1
^^^^^^^^^^^^
Foo::Bar = 1
^^^^^^^^^
::Foo = 1
Represents writing to a constant path.
def accept(visitor)
def accept(visitor) visitor.visit_constant_path_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, location: location } end
def initialize(target, operator_loc, value, location)
def initialize(target, operator_loc, value, location) @target = target @operator_loc = operator_loc @value = value @location = location end
def operator
def operator operator_loc&.slice end