Support undefined
authorDavid Vázquez <davazp@gmail.com>
Sun, 23 Jun 2013 19:22:49 +0000 (21:22 +0200)
committerDavid Vázquez <davazp@gmail.com>
Sun, 23 Jun 2013 19:22:49 +0000 (21:22 +0200)
src/compiler-codegen.lisp

index 61aeac2..332e51f 100644 (file)
      (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