aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/js/loop.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/js/loop.lux')
-rw-r--r--stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/js/loop.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/js/loop.lux b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/js/loop.lux
index 5747dfee9..50e19dcf6 100644
--- a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/js/loop.lux
+++ b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/js/loop.lux
@@ -3,7 +3,7 @@
(.require
[library
- [lux (.except Scope Synthesis)
+ [lux (.except Scope)
[abstract
["[0]" monad (.only do)]]
[data
@@ -23,8 +23,8 @@
[runtime (.only Operation Phase Phase! Translator Translator!)]
["[1][0]" when]
["///[1]" ////
- [synthesis (.only Scope Synthesis)]
["[0]" phase]
+ ["[0]" synthesis (.only Scope)]
["[1][0]" translation]
[///
[reference
@@ -66,7 +66,7 @@
(_.then (_.define $iteration (_.array bindings))))))
(def .public (scope! statement expression archive [start initsS+ bodyS])
- (Translator! (Scope Synthesis))
+ (Translator! (Scope synthesis.Term))
(when initsS+
... function/false/non-independent loop
{.#End}
@@ -88,7 +88,7 @@
body!)))))))
(def .public (scope statement expression archive [start initsS+ bodyS])
- (-> Phase! (Translator (Scope Synthesis)))
+ (-> Phase! (Translator (Scope synthesis.Term)))
(when initsS+
... function/false/non-independent loop
{.#End}
@@ -104,7 +104,7 @@
(_.var "lux_again_values"))
(def .public (again! statement expression archive argsS+)
- (Translator! (List Synthesis))
+ (Translator! (List synthesis.Term))
(do [! phase.monad]
[[offset @scope] /////translation.anchor
argsO+ (monad.each ! (expression archive) argsS+)