aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/repl.lux
diff options
context:
space:
mode:
authorEduardo Julian2018-01-08 22:09:12 -0400
committerEduardo Julian2018-01-08 22:09:12 -0400
commitd48da794a693c00990c411b669d6412b8bf4d904 (patch)
treea1442427fdd9852ec0199a65b4b9999b35261137 /new-luxc/source/luxc/repl.lux
parent9eaaaf953ba7ce1eeb805603f4e113aa15f5178f (diff)
- Re-factored initialization functions to their own module.
Diffstat (limited to 'new-luxc/source/luxc/repl.lux')
-rw-r--r--new-luxc/source/luxc/repl.lux3
1 files changed, 2 insertions, 1 deletions
diff --git a/new-luxc/source/luxc/repl.lux b/new-luxc/source/luxc/repl.lux
index 16f4de5db..99d635975 100644
--- a/new-luxc/source/luxc/repl.lux
+++ b/new-luxc/source/luxc/repl.lux
@@ -34,6 +34,7 @@
[".L" host]
[".L" translation]
[".L" eval]
+ [".L" init]
(translation (jvm [".T" runtime]))
[".L" extension]
(extension [".E" analysis]
@@ -54,7 +55,7 @@
[output (promise.future
(do io.Monad<IO>
[host hostL.init-host]
- (case (macro.run' (translationL.init-compiler host)
+ (case (macro.run' (initL.compiler host)
(moduleL.with-module +0 repl-module
runtimeT.translate))
(#e.Success [compiler _])