method
suspend_context
suspend_context(context)
public
Hide source
# File lib/irb.rb, line 237 def suspend_context(context) @context, back_context = context, @context begin yield back_context ensure @context = back_context end end