method
irb_abort
irb_abort(irb, exception = Abort)
public
Hide source
# 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