class YARP::LocalVariableWriteNode
Experimental RBS support (using type sampling data from the type_fusion project).
# sig/yarp/node.rbs class YARP::LocalVariableWriteNode < YARP::Node def initialize: (Symbol constant_id, Integer depth, (YARP::IntegerNode | YARP::ArrayNode | YARP::CallNode) value, YARP::Location name_loc, YARP::Location operator_loc, YARP::Location location) -> void end
^^^^^^^
foo = 1
Represents writing to a local variable.
def accept(visitor)
def accept(visitor) visitor.visit_local_variable_write_node(self) end
def child_nodes
def child_nodes [value] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { constant_id: constant_id, depth: depth, value: value, name_loc: name_loc, operator_loc: operator_loc, location: location } end
def initialize(constant_id, depth, value, name_loc, operator_loc, location)
Experimental RBS support (using type sampling data from the type_fusion project).
def initialize: (Symbol constant_id, Integer depth, (YARP::IntegerNode | YARP::ArrayNode | YARP::CallNode) value, YARP::Location name_loc, YARP::Location operator_loc, YARP::Location location) -> void
This signature was generated using 3 samples from 1 application.
def initialize(constant_id, depth, value, name_loc, operator_loc, location) @constant_id = constant_id @depth = depth @value = value @name_loc = name_loc @operator_loc = operator_loc @location = location end
def name
def name name_loc.slice end
def operator
def operator operator_loc&.slice end