IEx.Pry.break
You're seeing just the function
break
, go back to IEx.Pry module for more information.
Specs
break(module(), atom(), arity(), non_neg_integer()) :: {:ok, id()} | {:error, break_error()}
Sets up a breakpoint on the given module/function/arity.
Specs
break( module(), atom(), [Macro.t()], Macro.t(), Macro.Env.t(), non_neg_integer() ) :: {:ok, id()} | {:error, break_error()}
Sets up a breakpoint on the given module/function/args with the given guard
.
It requires an env
to be given to make the expansion of the guards.