diff --git a/whalesong/compiler/compiler.rkt b/whalesong/compiler/compiler.rkt index acb60e7..5263c34 100644 --- a/whalesong/compiler/compiler.rkt +++ b/whalesong/compiler/compiler.rkt @@ -109,11 +109,11 @@ (make-PopEnvironment (make-SubtractArg (make-Reg 'argcount) (make-Const 1)) (make-Const 0)) after-pop-prompt: - last:)))) - - - - + last: + ;; Finally, return to the success continuation on the stack. + (make-AssignImmediate 'proc (make-ControlStackLabel)) + (make-PopControlFrame) + (make-Goto (make-Reg 'proc)))))) diff --git a/whalesong/repl-prototype/htdocs/repl.js b/whalesong/repl-prototype/htdocs/repl.js index a7c09f2..d4667ad 100644 --- a/whalesong/repl-prototype/htdocs/repl.js +++ b/whalesong/repl-prototype/htdocs/repl.js @@ -162,6 +162,7 @@ var compiledCodes = compiledResult.compiledCodes; forEachK(compiledCodes, function(code, k) { + console.log(code); // Indirect eval usage here is deliberate. var codeFunction = (0,eval)(code); var onGoodEvaluation = function() {