diff options
author | Ben Burdette <bburdette@gmail.com> | 2021-12-27 18:29:55 -0700 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2021-12-27 18:29:55 -0700 |
commit | 5954cbf3e9dca0e3b84e4bf2def74abb3d6f80cd (patch) | |
tree | 69e37e944d02356ade7c870330301f559c61be90 /src/libcmd/command.cc | |
parent | 4610e02d04c9f41ac355d2ca6a27d3a631ffefc6 (diff) |
more cleanup
Diffstat (limited to 'src/libcmd/command.cc')
-rw-r--r-- | src/libcmd/command.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/libcmd/command.cc b/src/libcmd/command.cc index b97458b2d..e44c737f5 100644 --- a/src/libcmd/command.cc +++ b/src/libcmd/command.cc @@ -73,14 +73,6 @@ ref<EvalState> EvalCommand::getEvalState() debuggerHook = [evalState{ref<EvalState>(evalState)}](const Error & error, const Env & env, const Expr & expr) { printError("%s\n\n" ANSI_BOLD "Starting REPL to allow you to inspect the current state of the evaluator.\n" ANSI_NORMAL, error.what()); - // printStaticEnvBindings(expr); - - // std::cout << evalState->vCallFlake << std::endl; - - // std::cout << "expr: " << std::endl; - // expr.show(std::cout); - // std::cout << std::endl; - if (expr.staticenv) { auto vm = mapStaticEnvBindings(*expr.staticenv.get(), env); |