aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/compositor.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-02-08 19:34:35 -0400
committerEduardo Julian2022-02-08 19:34:35 -0400
commit2ea0bda182d76015df4f53ed82efd6f37e93cba6 (patch)
treebe6b84b9316fe8b91bc6b99284978e60ad4b758e /stdlib/source/program/compositor.lux
parent0755768bb993cfb3924986eeb0486204a90bfeee (diff)
Optimized integer addition for Lux/Ruby in MRuby.
Diffstat (limited to 'stdlib/source/program/compositor.lux')
-rw-r--r--stdlib/source/program/compositor.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/program/compositor.lux b/stdlib/source/program/compositor.lux
index b2a5f4d15..55da4161b 100644
--- a/stdlib/source/program/compositor.lux
+++ b/stdlib/source/program/compositor.lux
@@ -40,8 +40,9 @@
[phase
[extension {"+" Extender}]]]]
[meta
- ["[0]" cli {"+" Service}]
[packager {"+" Packager}]
+ ["[0]" cli {"+" Service}]
+ ["[0]" export]
[archive {"+" Archive}
["[0]" unit]
[module
@@ -52,7 +53,6 @@
]]]
["[0]" / "_"
["[1][0]" static {"+" Static}]
- ["[1][0]" export]
["[1][0]" import]])
(def: (or_crash! failure_description action)
@@ -185,8 +185,8 @@
{cli.#Export export}
(<| (or_crash! "Export failed:")
(do (try.with async.monad)
- [_ (/export.export (value@ platform.#&file_system platform)
- export)]
+ [_ (export.export (value@ platform.#&file_system platform)
+ export)]
(in (debug.log! "Export complete!"))))
{cli.#Interpretation interpretation}