Revert "trying to get rid of the current success handler." FIXES #34
Reverted patch, added success handler to end of call stack, which is not
getting called. We already have separate handlers for error, so we might
as well have one for success explicitely.
This reverts commit 0428a021bd
.
Conflicts:
whalesong/js-assembler/assemble.rkt
whalesong/js-assembler/runtime-src/runtime.js
This commit is contained in:
parent
142baeb2ed
commit
ee6874cf88
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user