[bug] Tracked down the misassignment in my original. All tests passing.

This commit is contained in:
Elf M. Sternberg 2015-08-03 16:23:30 -07:00
parent 38fa5ae125
commit d26c572ba2
1 changed files with 1 additions and 1 deletions

View File

@ -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) ->