7 Dec
2010
7 Dec
'10
5:45 a.m.
(defun blah () (let ((result (foo))) (unless (null result) (throw result)))) generates the syntactically incorrect: function blah() { var result = foo(); return result != null ? (throw result) : null; };