added implementation of call-with-continuation-prompt.
This commit is contained in:
parent
a2a8a8c1ba
commit
ffc469de40
|
@ -3003,7 +3003,7 @@
|
||||||
function(M) {
|
function(M) {
|
||||||
var lst = NULL;
|
var lst = NULL;
|
||||||
if (M.a === 1) {
|
if (M.a === 1) {
|
||||||
lst = checkListofPairs(M, 'make-hasheq', 0);
|
lst = checkListofPairs(M, 'make-immutable-hasheq', 0);
|
||||||
}
|
}
|
||||||
return initializeImmutableHash(lst, plt.baselib.hashes.makeImmutableEqHashtable());
|
return initializeImmutableHash(lst, plt.baselib.hashes.makeImmutableEqHashtable());
|
||||||
});
|
});
|
||||||
|
@ -3014,7 +3014,7 @@
|
||||||
function(M) {
|
function(M) {
|
||||||
var lst = NULL;
|
var lst = NULL;
|
||||||
if (M.a === 1) {
|
if (M.a === 1) {
|
||||||
lst = checkListofPairs(M, 'make-hasheqv', 0);
|
lst = checkListofPairs(M, 'make-immutable-hasheqv', 0);
|
||||||
}
|
}
|
||||||
return initializeImmutableHash(lst, plt.baselib.hashes.makeImmutableEqvHashtable());
|
return initializeImmutableHash(lst, plt.baselib.hashes.makeImmutableEqvHashtable());
|
||||||
});
|
});
|
||||||
|
@ -3025,7 +3025,7 @@
|
||||||
function(M) {
|
function(M) {
|
||||||
var lst = NULL;
|
var lst = NULL;
|
||||||
if (M.a === 1) {
|
if (M.a === 1) {
|
||||||
lst = checkListofPairs(M, 'make-hash', 0);
|
lst = checkListofPairs(M, 'make-immutable-hash', 0);
|
||||||
}
|
}
|
||||||
return initializeImmutableHash(lst, plt.baselib.hashes.makeImmutableEqualHashtable());
|
return initializeImmutableHash(lst, plt.baselib.hashes.makeImmutableEqualHashtable());
|
||||||
});
|
});
|
||||||
|
@ -3124,7 +3124,7 @@
|
||||||
'hash-values',
|
'hash-values',
|
||||||
1,
|
1,
|
||||||
function(M) {
|
function(M) {
|
||||||
var hash = checkHash(M, 'hash-keys', 0);
|
var hash = checkHash(M, 'hash-values', 0);
|
||||||
return baselib.lists.arrayToList(hash.values());
|
return baselib.lists.arrayToList(hash.values());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -3132,8 +3132,8 @@
|
||||||
'hash-has-key?',
|
'hash-has-key?',
|
||||||
2,
|
2,
|
||||||
function(M){
|
function(M){
|
||||||
var hash = checkHash(M, 'hash-set!', 0);
|
var hash = checkHash(M, 'hash-has-key?', 0);
|
||||||
var key = checkAny(M, 'hash-set!', 1);
|
var key = checkAny(M, 'hash-has-key?', 1);
|
||||||
return hash.containsKey(key);
|
return hash.containsKey(key);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -3146,23 +3146,26 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// The default abort prompt handler consumes a thunk and applies
|
var makeDefaultPromptHandler = function(promptTag) {
|
||||||
// it, in a context where a new prompt has been initialized.
|
return makeClosure(
|
||||||
var defaultPromptHandler =
|
|
||||||
makeClosure(
|
|
||||||
"default-prompt-handler",
|
"default-prompt-handler",
|
||||||
1,
|
1,
|
||||||
function(M) {
|
function(M) {
|
||||||
var proc = checkProcedure(M, 'apply', 0);
|
var proc = checkProcedure(M, 'default-prompt-tag', 0);
|
||||||
M.e.pop();
|
M.e.pop();
|
||||||
M.p = proc;
|
M.p = proc;
|
||||||
M.a = 0;
|
M.a = 0;
|
||||||
M.addPrompt(baselib.contmarks.DEFAULT_CONTINUATION_PROMPT_TAG,
|
M.addPrompt(promptTag, false);
|
||||||
false);
|
|
||||||
baselib.functions.rawApply(M);
|
baselib.functions.rawApply(M);
|
||||||
},
|
},
|
||||||
[]);
|
[]);
|
||||||
|
};
|
||||||
|
|
||||||
|
// The default abort prompt handler consumes a thunk and applies
|
||||||
|
// it, in a context where a new prompt has been initialized.
|
||||||
|
var defaultPromptHandler =
|
||||||
|
makeDefaultPromptHandler(baselib.contmarks.DEFAULT_CONTINUATION_PROMPT_TAG);
|
||||||
|
|
||||||
|
|
||||||
installPrimitiveClosure(
|
installPrimitiveClosure(
|
||||||
'abort-current-continuation',
|
'abort-current-continuation',
|
||||||
|
@ -3199,6 +3202,37 @@
|
||||||
baselib.functions.rawApply(M);
|
baselib.functions.rawApply(M);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
installPrimitiveClosure(
|
||||||
|
'call-with-continuation-prompt',
|
||||||
|
baselib.arity.makeArityAtLeast(1),
|
||||||
|
function(M) {
|
||||||
|
var proc, promptTag, handler, i;
|
||||||
|
proc = checkProcedure(M, 'call-with-continuation-prompt', 0);
|
||||||
|
if (M.a >= 2) {
|
||||||
|
promptTag = checkPromptTag(M, 'call-with-continuation-prompt', 1);
|
||||||
|
} else {
|
||||||
|
promptTag = DEFAULT_CONTINUATION_PROMPT_TAG;
|
||||||
|
}
|
||||||
|
if (M.a >= 3) {
|
||||||
|
if (M.e[M.e.length - 1 - 3] === false) {
|
||||||
|
handler = false;
|
||||||
|
} else {
|
||||||
|
handler = checkProcedure(M, 'call-with-continuation-prompt', 2);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
handler = makeDefaultPromptHandler(promptTag);
|
||||||
|
}
|
||||||
|
|
||||||
|
M.p = proc;
|
||||||
|
if (M.a >= 1) { M.e.pop(); } // the test is redundant, but I want the parallelism.
|
||||||
|
if (M.a >= 2) { M.e.pop(); }
|
||||||
|
if (M.a >= 3) { M.e.pop(); }
|
||||||
|
M.a = Math.max(M.a - 3, 0);
|
||||||
|
M.addPrompt(promptTag, handler);
|
||||||
|
baselib.functions.rawApply(M);
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -230,7 +230,8 @@
|
||||||
|
|
||||||
|
|
||||||
abort-current-continuation
|
abort-current-continuation
|
||||||
|
call-with-continuation-prompt
|
||||||
|
|
||||||
;; needed for cs019-local
|
;; needed for cs019-local
|
||||||
#%stratified-body
|
#%stratified-body
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user