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
  
  type YARP__ArrayNode_initialize_elements = Array[YARP::SymbolNode] | Array[] | Array[YARP::StringNode] | Array[YARP::CallNode] | Array[YARP::LocalVariableReadNode] | Array[YARP::IntegerNode]
  
  def initialize: (YARP__ArrayNode_initialize_elements 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 16 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 19 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).

type YARP__ArrayNode_initialize_elements = Array[YARP::SymbolNode] | Array[] | Array[YARP::StringNode] | Array[YARP::CallNode] | Array[YARP::LocalVariableReadNode] | Array[YARP::IntegerNode]
type YARP__ArrayNode_initialize_elements = YARP::SymbolNode |  | YARP::FalseNode | YARP::TrueNode | YARP::FalseNode | YARP::FalseNode | YARP::FalseNode | YARP::SymbolNode | YARP::TrueNode | YARP::StringNode | YARP::ConstantReadNode | YARP::NilNode | YARP::ConstantReadNode | YARP::ArrayNode | YARP::ArrayNode | YARP::CallNode | YARP::StringNode | YARP::StringNode | YARP::LocalVariableReadNode | YARP::FalseNode | YARP::FalseNode | YARP::FalseNode | YARP::FalseNode | YARP::FalseNode | YARP::SymbolNode | YARP::TrueNode | YARP::StringNode | YARP::ConstantReadNode | YARP::NilNode | YARP::ConstantReadNode | YARP::ArrayNode | YARP::ArrayNode | YARP::CallNode | YARP::LocalVariableReadNode | YARP::SymbolNode | YARP::SymbolNode | YARP::HashNode | YARP::ArrayNode

def initialize: (YARP__ArrayNode_initialize_elements elements, YARP::Location? opening_loc, YARP::Location? closing_loc, YARP::Location location) -> void

This signature was generated using 22 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