diff options
author | Ben Burdette <bburdette@protonmail.com> | 2022-03-31 09:37:36 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@protonmail.com> | 2022-03-31 09:37:36 -0600 |
commit | 1096d17b65834a7e1ff29d1afdf09536cc9d7a8d (patch) | |
tree | 58c96faecc710b8342d81fbe14073c4a09922f66 /src/libexpr/eval.hh | |
parent | c0a567e1963faaf9b16f772d6b4e76496a88ed32 (diff) |
show 'with' bindings as well as static
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index 9de3475e8..1c569fc36 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -25,8 +25,8 @@ enum RepairFlag : bool; typedef void (* PrimOpFun) (EvalState & state, const Pos & pos, Value * * args, Value & v); -void printStaticEnvBindings(const Expr &expr); -void printStaticEnvBindings(const StaticEnv &se, int lvl = 0); +void printEnvBindings(const Expr &expr, const Env &env); +void printEnvBindings(const StaticEnv &se, const Env &env, int lvl = 0); struct PrimOp { |