class YARP::MultiWriteNode
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/yarp/node.rbs class YARP::MultiWriteNode < YARP::Node def accept: (Analyzer::Visitor visitor) -> Array[Array, NilClass] def child_nodes: () -> Array[YARP::InstanceVariableWriteNode] def initialize: ((Array[YARP::LocalVariableWriteNode] | Array[YARP::InstanceVariableWriteNode]) targets, YARP::Location operator_loc, (YARP::CallNode | YARP::ArrayNode | YARP::LocalVariableReadNode) value, nil lparen_loc, nil rparen_loc, YARP::Location location) -> void end
^^^^^^^^^^^^^^^^^
a, b, c = 1, 2, 3
Represents a multi-target expression.
def accept(visitor)
Experimental RBS support (using type sampling data from the type_fusion
project).
def accept: (Analyzer::Visitor visitor) -> Array | NilClass | Array | Array | | Array | Array | | NilClass
This signature was generated using 1 sample from 1 application.
def accept(visitor) visitor.visit_multi_write_node(self) end
def child_nodes
Experimental RBS support (using type sampling data from the type_fusion
project).
def child_nodes: () -> YARP::InstanceVariableWriteNode | YARP::ArrayNode
This signature was generated using 2 samples from 1 application.
def child_nodes [*targets, value] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { targets: targets, operator_loc: operator_loc, value: value, lparen_loc: lparen_loc, rparen_loc: rparen_loc, location: location } end
def initialize(targets, operator_loc, value, lparen_loc, rparen_loc, location)
Experimental RBS support (using type sampling data from the type_fusion
project).
type YARP__MultiWriteNode_initialize_targets = YARP::LocalVariableWriteNode | YARP::InstanceVariableWriteNode | YARP::LocalVariableWriteNode | YARP::LocalVariableWriteNode | YARP::InstanceVariableWriteNode | YARP::InstanceVariableWriteNode | YARP::SplatNode def initialize: (YARP__MultiWriteNode_initialize_targets targets, YARP::Location operator_loc, (YARP::CallNode | YARP::ArrayNode | YARP::LocalVariableReadNode) value, nil lparen_loc, nil rparen_loc, YARP::Location location) -> void
This signature was generated using 8 samples from 1 application.
def initialize(targets, operator_loc, value, lparen_loc, rparen_loc, location) @targets = targets @operator_loc = operator_loc @value = value @lparen_loc = lparen_loc @rparen_loc = rparen_loc @location = location end
def lparen
def lparen lparen_loc&.slice end
def operator
def operator operator_loc&.slice end
def rparen
def rparen rparen_loc&.slice end