trying to trace down why we're not breaking
This commit is contained in:
parent
34ecaa9b68
commit
d03f86477f
|
@ -300,15 +300,15 @@
|
|||
|
||||
|
||||
var makePrimitiveProcedure = function (name, arity, f) {
|
||||
var proc = makeClosure(name,
|
||||
arity,
|
||||
function(M) {
|
||||
M.cbt--;
|
||||
var impl = function(M) {
|
||||
if(--M.cbt < 0) {
|
||||
throw impl;
|
||||
}
|
||||
M.v = f(M);
|
||||
M.e.length -= M.a;
|
||||
return M.c.pop().label(M);
|
||||
},
|
||||
[]);
|
||||
};
|
||||
var proc = makeClosure(name, arity, impl, []);
|
||||
// Also, record the raw implementation of the function.
|
||||
proc._i = f;
|
||||
return proc;
|
||||
|
|
|
@ -15,18 +15,16 @@
|
|||
this.val = val;
|
||||
};
|
||||
|
||||
var symbolCache = {};
|
||||
|
||||
var hasOwnProperty = {}.hasOwnProperty;
|
||||
var symbolCache = new baselib.Dict();
|
||||
|
||||
// makeSymbol: string -> Symbol.
|
||||
// Interns a symbol.
|
||||
var makeSymbol = function (val) {
|
||||
// To ensure that we can eq? symbols with equal values.
|
||||
if (!(hasOwnProperty.call(symbolCache,val))) {
|
||||
symbolCache[val] = new Symbol(val);
|
||||
if (!(symbolCache.has(val))) {
|
||||
symbolCache.set(val, new Symbol(val));
|
||||
}
|
||||
return symbolCache[val];
|
||||
return symbolCache.get(val);
|
||||
};
|
||||
|
||||
Symbol.prototype.equals = function (other, aUnionFind) {
|
||||
|
|
|
@ -478,11 +478,13 @@
|
|||
MACHINE.running = false;
|
||||
MACHINE.params.currentErrorHandler(
|
||||
MACHINE,
|
||||
new baselib.exceptions.RacketError(
|
||||
"User break",
|
||||
makeExnBreak("User break.",
|
||||
MACHINE.captureContinuationMarks(),
|
||||
// FIXME: capture the continuation as well,
|
||||
// rather than just hold false.
|
||||
false));
|
||||
false)));
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
@ -554,7 +556,6 @@
|
|||
var that = this;
|
||||
var thunk = initialJump;
|
||||
var startTime = (new Date()).valueOf();
|
||||
that.cbt = STACK_LIMIT_ESTIMATE;
|
||||
that.params.numBouncesBeforeYield =
|
||||
that.params.maxNumBouncesBeforeYield;
|
||||
that.running = true;
|
||||
|
|
|
@ -104,7 +104,7 @@ $(document).ready(function() {
|
|||
};
|
||||
|
||||
var interruptEvaluation = function() {
|
||||
console.log('interrupt evaluation');
|
||||
console.log('scheduling an interruption');
|
||||
M.scheduleBreak();
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user