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.visit_rescue_node(self) end
def child_nodes
def child_nodes [*exceptions, reference, statements, consequent] end
def deconstruct_keys(keys)
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, 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 keyword_loc.slice end
def operator
def operator operator_loc&.slice end