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) -> void
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: () -> Array[nil | Node]
def child_nodes
  [*targets, value]
end

def deconstruct_keys(keys)

def deconstruct_keys: (keys: Array[Symbol]) -> Hash[Symbol, nil | Node | Array[Node] | String | Token | Array[Token] | Location]
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: Array[Node], operator_loc: Location?, value: Node?, lparen_loc: Location?, rparen_loc: Location?, location: Location) -> void
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: () -> String?
def lparen
  lparen_loc&.slice
end

def operator

def operator: () -> String?
def operator
  operator_loc&.slice
end

def rparen

def rparen: () -> String?
def rparen
  rparen_loc&.slice
end