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) -> untyped def child_nodes: () -> untyped def initialize: (Array[YARP::LocalVariableWriteNode] targets, YARP::Location operator_loc, YARP::CallNode 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) -> untyped
This signature was generated using 2 samples 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: () -> untyped
This signature was generated using 3 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).
def initialize: ((YARP::LocalVariableWriteNode | YARP::LocalVariableWriteNode | YARP::LocalVariableWriteNode | YARP::LocalVariableWriteNode) targets, YARP::Location operator_loc, YARP::CallNode value, nil lparen_loc, nil rparen_loc, YARP::Location location) -> void
This signature was generated using 3 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