aboutsummaryrefslogtreecommitdiff
path: root/lux-js/source
diff options
context:
space:
mode:
authorEduardo Julian2021-09-14 16:41:18 -0400
committerEduardo Julian2021-09-14 16:41:18 -0400
commitccfa75463cd7c702f41c3dae5cbdaeade7ba5c31 (patch)
treec47937a8f62a25ef945a876b3af76c5fca989db9 /lux-js/source
parentea15b844b51ff60f9785c6791507f813729f85c3 (diff)
Re-named "recur" to "again".
Diffstat (limited to 'lux-js/source')
-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 3f9fa6997..bb03f2c94 100644
--- a/lux-js/source/program.lux
+++ b/lux-js/source/program.lux
@@ -345,18 +345,18 @@
{.#Some member}
(case (ffi.check org/openjdk/nashorn/internal/runtime/Undefined member)
{.#Some _}
- (recur (++ idx) output)
+ (again (++ idx) output)
{.#None}
(case (lux_object member)
{try.#Success parsed_member}
- (recur (++ idx) (array.write! idx (:as java/lang/Object parsed_member) output))
+ (again (++ idx) (array.write! idx (:as java/lang/Object parsed_member) output))
{try.#Failure error}
{.#None}))
{.#None}
- (recur (++ idx) output))
+ (again (++ idx) output))
{.#Some output})))
{.#None}))