I'm trying to generate JS on the host (SBCL) with JSCL:
The following code causes Bad function designator error:
(load "jscl.lisp")
(in-package :jscl-xc)
(setq *environment* (make-lexenv))
(with-compilation-environment
(compile-toplevel
'(let ((x 'a)) `(,x))))
And the following causes Lock on package violation:
(load "jscl.lisp")
(in-package :jscl-xc)
(setq *environment* (make-lexenv))
(with-compilation-environment
(compile-toplevel
'(let ((x 'a)) `(a ,x))))
Is this a bug or I'm doing something wrong?
I'm trying to generate JS on the host (SBCL) with JSCL:
The following code causes
Bad function designatorerror:And the following causes
Lock on package violation:Is this a bug or I'm doing something wrong?