correcting bug with cadr: wrong contract type

This commit is contained in:
Danny Yoo 2012-02-18 22:35:40 -05:00
parent a13274d63b
commit 1b1d285297
4 changed files with 6 additions and 2 deletions

View File

@ -44,6 +44,9 @@
'make-vector
'equal?
'member
'memq
'memv
'memf
'append
'reverse
'length

View File

@ -103,7 +103,7 @@
'caarable value');
var checkCadrPair = baselib.check.makeCheckArgumentType(
function(x) {
return isPair(x) && isPair(x.first);
return isPair(x) && isPair(x.rest);
},
'cadrable value');
var checkList = baselib.check.checkList;

View File

@ -100,6 +100,7 @@
if
cond
else
=>
case
quote
unquote

View File

@ -7,4 +7,4 @@
(provide version)
(: version String)
(define version "1.135")
(define version "1.137")