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 comment_targets

def comment_targets: () -> Array[Node | Location]
def comment_targets
  [keyword_loc, *exceptions, *operator_loc, *reference, *statements, *consequent]
end

def copy(**params)

def copy: (**params) -> RescueNode
def copy(**params)
  RescueNode.new(
    params.fetch(:keyword_loc) { keyword_loc },
    params.fetch(:exceptions) { exceptions },
    params.fetch(:operator_loc) { operator_loc },
    params.fetch(:reference) { reference },
    params.fetch(:statements) { statements },
    params.fetch(:consequent) { consequent },
    params.fetch(:location) { location },
  )
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: StatementsNode?, consequent: RescueNode?, 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 inspect(inspector = NodeInspector.new)

def inspect(inspector = NodeInspector.new)
  inspector << inspector.header(self)
  inspector << "├── keyword_loc: #{inspector.location(keyword_loc)}\n"
  inspector << "├── exceptions: #{inspector.list("#{inspector.prefix}│   ", exceptions)}"
  inspector << "├── operator_loc: #{inspector.location(operator_loc)}\n"
  if (reference = self.reference).nil?
    inspector << "├── reference: ∅\n"
  else
    inspector << "├── reference:\n"
    inspector << reference.inspect(inspector.child_inspector("│   ")).delete_prefix(inspector.prefix)
  end
  if (statements = self.statements).nil?
    inspector << "├── statements: ∅\n"
  else
    inspector << "├── statements:\n"
    inspector << statements.inspect(inspector.child_inspector("│   ")).delete_prefix(inspector.prefix)
  end
  if (consequent = self.consequent).nil?
    inspector << "└── consequent: ∅\n"
  else
    inspector << "└── consequent:\n"
    inspector << consequent.inspect(inspector.child_inspector("    ")).delete_prefix(inspector.prefix)
  end
  inspector.to_str
end

def keyword

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

def operator

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