From d26c572ba26fd138f2fb580c19d7e694b9555ec6 Mon Sep 17 00:00:00 2001 From: "Elf M. Sternberg" Date: Mon, 3 Aug 2015 16:23:30 -0700 Subject: [PATCH] [bug] Tracked down the misassignment in my original. All tests passing. --- chapter3g/interpreter.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter3g/interpreter.coffee b/chapter3g/interpreter.coffee index 367f25a..6e86144 100644 --- a/chapter3g/interpreter.coffee +++ b/chapter3g/interpreter.coffee @@ -239,7 +239,7 @@ class BottomCont extends Continuation evaluateBlock = (label, body, env, kont) -> k = new BlockCont(kont, label) - evaluateBegin body, (new BlockEnv env, label, kont), k + evaluateBegin body, (new BlockEnv env, label, k), k class BlockCont extends Continuation constructor: (@kont, @label) ->