aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/compositor.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/compositor.lux')
-rw-r--r--stdlib/source/program/compositor.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/program/compositor.lux b/stdlib/source/program/compositor.lux
index 99a4faa4a..873c4c08d 100644
--- a/stdlib/source/program/compositor.lux
+++ b/stdlib/source/program/compositor.lux
@@ -28,7 +28,7 @@
["$" lux (.only)
["[1]/[0]" program (.only Program)]
["[0]" syntax]
- ["[0]" generation]
+ ["[0]" translation]
["[0]" declaration]
["[0]" analysis (.only)
[macro (.only Expander)]]
@@ -135,7 +135,7 @@
(with_expansions [<parameters> (these anchor expression artifact)]
(def .public (compiler lux_compiler file_context
- expander host_analysis platform generation_bundle host_declaration_bundle program global extender
+ expander host_analysis platform translation_bundle host_declaration_bundle program global extender
service
packager,package)
(All (_ <parameters>)
@@ -144,9 +144,9 @@
Expander
analysis.Bundle
(IO (Platform <parameters>))
- (generation.Bundle <parameters>)
+ (translation.Bundle <parameters>)
(declaration.Bundle <parameters>)
- (Program expression artifact) (-> Archive Symbol (generation.Operation <parameters> expression))
+ (Program expression artifact) (-> Archive Symbol (translation.Operation <parameters> expression))
Extender
Service
[Packager file.Path]
@@ -161,7 +161,7 @@
[import (import.import (the platform.#file_system platform) (the cli.#libraries compilation))
.let [all_extensions [(analysisE.bundle host_analysis)
synthesisE.bundle
- generation_bundle
+ translation_bundle
host_declaration_bundle]]
[state archive phase_wrapper] (sharing [<parameters>]
(is (Platform <parameters>)
@@ -225,5 +225,5 @@
... [console (|> console.default
... async.future
... (at ! each (|>> try.trusted console.async)))]
- ... (interpreter.run! (try.with async.monad) console platform interpretation generation_bundle)))
+ ... (interpreter.run! (try.with async.monad) console platform interpretation translation_bundle)))
))))