method
irb_abort
v1_8_7_330 -
Show latest stable
- Class:
IRB
irb_abort(irb, exception = Abort)public
No documentation available.
# File lib/irb.rb, line 87
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