Correcting the behavior of the default abort handler so it reestablishes the prompt frame, so that another abort doesn't escape.

This commit is contained in:
Danny Yoo 2013-04-17 16:38:47 -06:00
parent 8fd768e4ef
commit 57ef1d4a7d
2 changed files with 33 additions and 11 deletions

View File

@ -3146,18 +3146,22 @@
// The default prompt handler consumes a thunk and applies it. // The default abort prompt handler consumes a thunk and applies
// it, in a context where a new prompt has been initialized.
var defaultPromptHandler = var defaultPromptHandler =
makeClosure("default-prompt-handler", makeClosure(
1, "default-prompt-handler",
function(M) { 1,
var proc = checkProcedure(M, 'apply', 0); function(M) {
M.e.pop(); var proc = checkProcedure(M, 'apply', 0);
M.p = proc; M.e.pop();
M.a = 0; M.p = proc;
baselib.functions.rawApply(M); M.a = 0;
}, M.addPrompt(baselib.contmarks.DEFAULT_CONTINUATION_PROMPT_TAG,
[]); false);
baselib.functions.rawApply(M);
},
[]);
installPrimitiveClosure( installPrimitiveClosure(

View File

@ -488,6 +488,24 @@
return new baselib.contmarks.ContinuationMarkSet(kvLists); return new baselib.contmarks.ContinuationMarkSet(kvLists);
}; };
var justReturn = function(M) {
M.p=M.c[M.c.length-1].label;
M.c.pop();
return(M.p)(M);
};
justReturn.mvr = function(M) {
M.p=M.c[M.c.length-1].label;
M.c.pop();
return(M.p.mvr)(M);
};
Machine.prototype.addPrompt = function(promptTag, abortHandlerClosure) {
this.c.push(new PromptFrame(justReturn,
DEFAULT_CONTINUATION_PROMPT_TAG,
this.e.length,
abortHandlerClosure));
};