`(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")))))
// contain runtime code that jscl assumes to exist.
var window = this;
+var t;
var nil;
var lisp = {};
}
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
}
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