behavior chased to incorrect definition of not. Fixed\!

This commit is contained in:
Danny Yoo 2011-04-14 16:32:19 -04:00
parent 2148cb047e
commit 3335aa2cf5
3 changed files with 6 additions and 2 deletions

View File

@ -89,7 +89,7 @@
(format "(~a === RUNTIME.NULL)" (first checked-operands))]
[(not)
(format "(!(~a))" (first checked-operands))]
(format "(~a === false)" (first checked-operands))]
[(eq?)
(format "(~a === ~a)" (first checked-operands) (second checked-operands))])))

View File

@ -687,7 +687,7 @@
Primitives['not'] = function(MACHINE) {
var firstArg = MACHINE.env[MACHINE.env.length-1];
return (!firstArg);
return (firstArg === false);
};
Primitives['not'].arity = 1;
Primitives['not'].displayName = 'not';

View File

@ -141,6 +141,10 @@ EOF
(test '(displayln (not (not 3)))
"true\n")
(test '(displayln (not 0))
"false\n")
(test '(displayln (add1 1))
"2\n")