aboutsummaryrefslogtreecommitdiff
path: root/lux-js/source/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'lux-js/source/program.lux')
-rw-r--r--lux-js/source/program.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux
index 450b4f9ae..9be0834a6 100644
--- a/lux-js/source/program.lux
+++ b/lux-js/source/program.lux
@@ -368,9 +368,9 @@
(Maybe (Array java/lang/Object)))
(if (ffi.of_boolean (org/openjdk/nashorn/api/scripting/JSObject::isArray js_object))
(let [num_keys (.nat (ffi.of_int (org/openjdk/nashorn/api/scripting/ScriptObjectMirror::size js_object)))]
- (loop [idx 0
- output (is (Array java/lang/Object)
- (array.empty num_keys))]
+ (loop (again [idx 0
+ output (is (Array java/lang/Object)
+ (array.empty num_keys))])
(if (n.< num_keys idx)
(case (org/openjdk/nashorn/api/scripting/JSObject::getMember (ffi.as_string (%.nat idx)) js_object)
{.#Some member}