class YARP::RequiredDestructuredParameterNode

Experimental RBS support (using type sampling data from the type_fusion project).

# sig/yarp/node.rbs

class YARP::RequiredDestructuredParameterNode < YARP::Node
  def accept: (Analyzer::Visitor visitor) -> untyped
  def child_nodes: () -> Array[YARP::RequiredParameterNode]
  def initialize: (Array[YARP::RequiredParameterNode] parameters, YARP::Location opening_loc, YARP::Location closing_loc, YARP::Location location) -> void
end

end
^^^^^^^^^^
def foo((bar, baz))
Represents a destructured required parameter node.

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 1 sample from 1 application.

def accept: (visitor: Visitor) -> void
def accept(visitor)
  visitor.visit_required_destructured_parameter_node(self)
end

def child_nodes

Experimental RBS support (using type sampling data from the type_fusion project).

def child_nodes: () -> YARP::RequiredParameterNode

This signature was generated using 1 sample from 1 application.

def child_nodes: () -> Array[nil | Node]
def child_nodes
  [*parameters]
end

def closing

def closing: () -> String
def closing
  closing_loc.slice
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)
  { parameters: parameters, opening_loc: opening_loc, closing_loc: closing_loc, location: location }
end

def initialize(parameters, opening_loc, closing_loc, location)

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (YARP::RequiredParameterNode parameters, YARP::Location opening_loc, YARP::Location closing_loc, YARP::Location location) -> void

This signature was generated using 1 sample from 1 application.

def initialize: (parameters: Array[Node], opening_loc: Location, closing_loc: Location, location: Location) -> void
def initialize(parameters, opening_loc, closing_loc, location)
  @parameters = parameters
  @opening_loc = opening_loc
  @closing_loc = closing_loc
  @location = location
end

def opening

def opening: () -> String
def opening
  opening_loc.slice
end