method
irb_abort
v1_9_3_125 -
Show latest stable
- Class:
IRB
irb_abort(irb, exception = Abort)public
No documentation available.
# File lib/irb.rb, line 86
def IRB.irb_abort(irb, exception = Abort)
if defined? Thread
irb.context.thread.raise exception, "abort then interrupt!"
else
raise exception, "abort then interrupt!"
end
end