diff options
author | Ben Burdette <bburdette@gmail.com> | 2021-09-13 11:57:25 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2021-09-13 11:57:25 -0600 |
commit | 176911102ce2c0be06bbfed9099f364d71c3c679 (patch) | |
tree | e8b0c12410c5126d57313601ba73c0afdc5e8851 /src/libcmd/command.cc | |
parent | 310c689d317d1eb4bcf50cd11d84165fe2ffd512 (diff) |
printEnvPosChain
Diffstat (limited to 'src/libcmd/command.cc')
-rw-r--r-- | src/libcmd/command.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcmd/command.cc b/src/libcmd/command.cc index 45665b555..07f4208da 100644 --- a/src/libcmd/command.cc +++ b/src/libcmd/command.cc @@ -109,6 +109,7 @@ ref<EvalState> EvalCommand::getEvalState() if (startReplOnEvalErrors) debuggerHook = [evalState{ref<EvalState>(evalState)}](const Error & error, const Env & env) { printError("%s\n\n" ANSI_BOLD "Starting REPL to allow you to inspect the current state of the evaluator.\n" ANSI_NORMAL, error.what()); + // printEnvPosChain(env); printEnvBindings(env); auto vm = mapEnvBindings(env); runRepl(evalState, *vm); |