Fix variables for FFI, convert T/NIL, true/false/null.
authorOlof-Joachim Frahm <olof@macrolet.net>
Tue, 15 Oct 2013 22:01:43 +0000 (00:01 +0200)
committerOlof-Joachim Frahm <olof@macrolet.net>
Tue, 15 Oct 2013 22:49:38 +0000 (00:49 +0200)
src/boot.lisp
src/compiler/compiler.lisp
src/prelude.js

index 736c07d..f181239 100644 (file)
@@ -50,6 +50,7 @@
      ',name))
 
 (defconstant t 't)
+(%js-vset "t" t)
 (defconstant nil 'nil)
 (%js-vset "nil" nil)
 
index 7ce004d..ffa0c7d 100644 (file)
                                `(property ,obj (call |xstring| ,p)))
                              (mapcar #'convert (cdr function)))
                     ,@(mapcar (lambda (s)
-                                `(call |lisp_to_js| ,s))
+                                `(call |lisp_to_js| ,(convert s)))
                               args))))
       (t
        (error "Bad function descriptor")))))
index 9214436..f3ef952 100644 (file)
@@ -2,6 +2,7 @@
 // contain runtime code that jscl assumes to exist.
 
 var window = this;
+var t;
 var nil;
 
 var lisp = {};
@@ -114,7 +115,11 @@ function Symbol(name, package_name){
 }
 
 function lisp_to_js (x) {
-    if (typeof x == 'object' && 'length' in x && x.stringp == 1)
+    if (x === nil)
+        return null;
+    else if (x === t)
+        return true;
+    else if (typeof x == 'object' && 'length' in x && x.stringp == 1)
         return xstring(x);
     else if (typeof x == 'function'){
         // Trampoline calling the Lisp function
@@ -129,7 +134,11 @@ function lisp_to_js (x) {
 }
 
 function js_to_lisp (x) {
-    if (typeof x == 'string')
+    if (x === null || x === undefined || x === false)
+        return nil;
+    else if (x === true)
+        return t;
+    else if (typeof x == 'string')
         return make_lisp_string(x);
     else if (typeof x == 'function'){
         // Trampoline calling the JS function