class YARP::ArrayNode

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

# sig/yarp/node.rbs

class YARP::ArrayNode < YARP::Node
  def accept: (Analyzer::Visitor visitor) -> untyped
  def child_nodes: () -> untyped
  def initialize: ((Array[] | Array[YARP::LocalVariableReadNode] | Array[YARP::CallNode]) elements, YARP::Location opening_loc, YARP::Location closing_loc, YARP::Location location) -> void
end

^^^^^^^^^
[1, 2, 3]
a special array using % like %w or %i.
Represents an array literal. This can be a regular array using brackets or

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

def accept: (visitor: Visitor) -> void
def accept(visitor)
  visitor.visit_array_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 2 samples from 1 application.

def child_nodes: () -> Array[nil | Node]
def child_nodes
  [*elements]
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)
  { elements: elements, opening_loc: opening_loc, closing_loc: closing_loc, location: location }
end

def initialize(elements, opening_loc, closing_loc, location)

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

def initialize: (( | YARP::LocalVariableReadNode | YARP::CallNode | YARP::CallNode | YARP::CallNode) elements, YARP::Location opening_loc, YARP::Location closing_loc, YARP::Location location) -> void

This signature was generated using 6 samples from 1 application.

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

def opening

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