for-in
authorDavid Vázquez <davazp@gmail.com>
Mon, 24 Jun 2013 12:17:56 +0000 (14:17 +0200)
committerDavid Vázquez <davazp@gmail.com>
Mon, 24 Jun 2013 12:17:56 +0000 (14:17 +0200)
src/compiler-codegen.lisp

index 27114b2..e82b841 100644 (file)
               (js-expr step)
               (js-format ")")
               (js-stmt `(progn ,@body))))
+           (for-in
+            (destructuring-bind ((x object) &body body) (cdr form)
+              (js-format "for (")
+              (js-identifier x)
+              (js-format " in ")
+              (js-expr object)
+              (js-format ")")
+              (js-stmt `(progn ,@body))))
            (try
             (destructuring-bind (&rest body) (cdr form)
               (js-format "try")