[parenscript-devel] Syntax error when binding to a binding
Daniel Gackle
danielgackle at gmail.com
Mon May 3 23:22:10 UTC 2010
Another syntax error in the new PS. This form:
(let ((blah (let ((x (foo)))
(if (null x) y z)))))
... compiles to...
var blah = x = foo(), x == null ? y : z;
... which is incorrect. Previously, PS produced this, which is correct:
var blah = (x = foo(), x == null ? y : z);
Daniel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/parenscript-devel/attachments/20100503/72a691bb/attachment.html>
More information about the parenscript-devel
mailing list