class YARP::ConstantPathOrWriteNode
^^^^^^^^^^^^^^^^^^^^^^^
Parent::Child ||= value
Represents the use of the ‘||=` operator for assignment to a constant path.
def accept(visitor)
def accept(visitor) visitor.visit_constant_path_or_write_node(self) end
def child_nodes
def child_nodes [target, value] end
def comment_targets
def comment_targets [target, operator_loc, value] end
def copy(**params)
def copy(**params) ConstantPathOrWriteNode.new( params.fetch(:target) { target }, params.fetch(:operator_loc) { operator_loc }, params.fetch(:value) { value }, params.fetch(:location) { location }, ) 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 inspect(inspector = NodeInspector.new)
def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector << "├── target:\n" inspector << inspector.child_node(target, "│ ") inspector << "├── operator_loc: #{inspector.location(operator_loc)}\n" inspector << "└── value:\n" inspector << inspector.child_node(value, " ") inspector.to_str end
def operator
def operator operator_loc.slice end