IEx.Helpers.continue
You're seeing just the function
continue
, go back to IEx.Helpers module for more information.
Continues execution of the current process.
This is usually called by sessions started with IEx.pry/0
or IEx.break!/4
. This allows the current process to execute
until the next breakpoint, which will automatically yield control
back to IEx without requesting permission to pry.
If the running process terminates, a new IEx session is started.
While the process executes, the user will no longer have
control of the shell. If you would rather start a new shell,
use respawn/0
instead.