Merge pull request #39 from vishesh/master

Revert "trying to get rid of the current success handler." FIXES #34
This commit is contained in:
Vishesh Yadav 2015-06-16 15:33:24 -04:00
commit 8314bbe95c
3 changed files with 4 additions and 2 deletions

View File

@ -65,6 +65,7 @@
(display (assemble-current-interned-constant-closure-table) op)
(display "M.params.currentErrorHandler = fail;\n" op)
(display "M.params.currentSuccessHandler = success;\n" op)
(display #<<EOF
for (param in params) {
if (Object.hasOwnProperty.call(params, param)) {
@ -79,7 +80,6 @@ EOF
(assemble-label (make-Label (BasicBlock-name (first basic-blocks)))))]
[else
;; Otherwise, we want to run under a trampolining context.
(display "M.c.push(new RT.CallFrame(function(M){ setTimeout(success, 0); },M.p));\n" op)
(fprintf op "M.trampoline(~a, ~a); })"
(assemble-label (make-Label (BasicBlock-name (first basic-blocks))))
(cond [(eq? trampoline-option 'with-preemption)

View File

@ -297,6 +297,7 @@
'currentOutputPort': new StandardOutputPort(),
'currentErrorPort': new StandardErrorPort(),
'currentInputPort': new StandardInputPort(),
'currentSuccessHandler': function(MACHINE) {},
'currentErrorHandler': function(MACHINE, exn) {
MACHINE.params.currentErrorDisplayer(
MACHINE,
@ -752,6 +753,7 @@
that.running = false;
that.breakScheduled = false;
that.params.currentSuccessHandler(that);
release();
return;

View File

@ -69,7 +69,7 @@
(display "var M = new plt.runtime.Machine();\n" op)
(display "(function() { " op)
(display "var myInvoke = " op)
(assemble/write-invoke a-statement op)
(assemble/write-invoke a-statement op 'with-preemption)
(display ";" op)
(fprintf op
"return function(succ, fail, params) {