From: David Vázquez Date: Sun, 23 Jun 2013 19:22:49 +0000 (+0200) Subject: Support undefined X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=f659b2864cf3b7cc7608d1fcdb57b6c296434e16;p=jscl.git Support undefined --- diff --git a/src/compiler-codegen.lisp b/src/compiler-codegen.lisp index 61aeac2..332e51f 100644 --- a/src/compiler-codegen.lisp +++ b/src/compiler-codegen.lisp @@ -108,10 +108,11 @@ (js-format "~a" (js-escape-string form))) ((symbolp form) (case form - (true (js-format "true")) - (false (js-format "false")) - (null (js-format "null")) - (this (js-format "this")) + (true (js-format "true")) + (false (js-format "false")) + (null (js-format "null")) + (this (js-format "this")) + (undefined (js-format "undefined")) (otherwise (js-identifier form)))) (t