diff options
author | Eduardo Julian | 2022-11-15 20:07:38 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-11-15 20:07:38 -0400 |
commit | 91a1f21f3c75750217d272554bc8a341f075f82d (patch) | |
tree | 5e745cea303450fa61f931d4a4be6b6fa1e279a2 /stdlib/source/program | |
parent | d656ef2143151a1d78768df4562e5275dff67b9d (diff) |
Now documenting dependers and dependees.
Diffstat (limited to 'stdlib/source/program')
-rw-r--r-- | stdlib/source/program/compositor.lux | 12 |
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))) )))) |