class YARP::BlockNode

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

# sig/yarp/node.rbs

class YARP::BlockNode < YARP::Node
  def accept: (Analyzer::Visitor visitor) -> untyped
  def child_nodes: () -> untyped
  def initialize: ((Array[Symbol] | Array[]) locals, YARP::BlockParametersNode? parameters, (YARP::StatementsNode | YARP::BeginNode) statements, YARP::Location opening_loc, YARP::Location closing_loc, YARP::Location location) -> void
end

^^^^^^^^^^^^^^
[1, 2, 3].each { |i| puts x }
Represents a block of ruby code.

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

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

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

def initialize(locals, parameters, statements, opening_loc, closing_loc, location)

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

def initialize: ((Symbol |  | Symbol | Symbol | Symbol | Symbol) locals, YARP::BlockParametersNode? parameters, (YARP::StatementsNode | YARP::BeginNode) statements, YARP::Location opening_loc, YARP::Location closing_loc, YARP::Location location) -> void

This signature was generated using 18 samples from 1 application.

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

def opening

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