fixing type of list*; kanren wasn't running properly
This commit is contained in:
parent
656825be9e
commit
b8971417b2
|
@ -631,11 +631,13 @@ var invokeMainModule = function() {
|
|||
.css('whitespace', 'pre')
|
||||
.appendTo(subcontextDiv);
|
||||
} else if (plt.runtime.isProcedure(context[i])) {
|
||||
$('<div/>').text('in ' + context[i].displayName)
|
||||
.addClass('stacktrace')
|
||||
.css('margin-left', '10px')
|
||||
.css('whitespace', 'pre')
|
||||
.appendTo(subcontextDiv);
|
||||
if (context[i].displayName) {
|
||||
$('<div/>').text('in ' + context[i].displayName)
|
||||
.addClass('stacktrace')
|
||||
.css('margin-left', '10px')
|
||||
.css('whitespace', 'pre')
|
||||
.appendTo(subcontextDiv);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -81,18 +81,10 @@
|
|||
|
||||
|
||||
var isProcedure = function (x) {
|
||||
return (typeof (x) === 'function' ||
|
||||
x instanceof Closure);
|
||||
return (typeof (x) === 'function' || x instanceof Closure);
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var coersePrimitiveToJavaScript = function (v, MACHINE) {
|
||||
return function (succ, fail) {
|
||||
try {
|
||||
|
|
|
@ -603,7 +603,7 @@
|
|||
'list*',
|
||||
baselib.arity.makeArityAtLeast(1),
|
||||
function (M) {
|
||||
var result = checkList(M, 'list*', M.a - 1), i;
|
||||
var result = checkAny(M, 'list*', M.a - 1), i;
|
||||
for (i = M.a - 2; i >= 0; i--) {
|
||||
result = makePair(M.e[M.e.length - 1 - i],
|
||||
result);
|
||||
|
|
Loading…
Reference in New Issue
Block a user