class YARP::RescueNode

‘ex` is in the `exception` field.
`Foo, *splat, Bar` are in the `exceptions` field.
end
foo
^^^^^^
rescue Foo, *splat, Bar => ex
begin
Represents a rescue statement.

def accept(visitor)

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

def child_nodes

def child_nodes: () -> Array[nil | Node]
def child_nodes
  [*exceptions, reference, statements, consequent]
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)
  { keyword_loc: keyword_loc, exceptions: exceptions, operator_loc: operator_loc, reference: reference, statements: statements, consequent: consequent, location: location }
end

def initialize(keyword_loc, exceptions, operator_loc, reference, statements, consequent, location)

def initialize: (keyword_loc: Location, exceptions: Array[Node], operator_loc: Location?, reference: Node?, statements: Node?, consequent: Node?, location: Location) -> void
def initialize(keyword_loc, exceptions, operator_loc, reference, statements, consequent, location)
  @keyword_loc = keyword_loc
  @exceptions = exceptions
  @operator_loc = operator_loc
  @reference = reference
  @statements = statements
  @consequent = consequent
  @location = location
end

def keyword

def keyword: () -> String
def keyword
  keyword_loc.slice
end

def operator

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