From f659b2864cf3b7cc7608d1fcdb57b6c296434e16 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20V=C3=A1zquez?= Date: Sun, 23 Jun 2013 21:22:49 +0200 Subject: [PATCH] Support undefined --- src/compiler-codegen.lisp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 -- 1.7.10.4