aboutsummaryrefslogtreecommitdiff
path: root/lux-js/source
diff options
context:
space:
mode:
authorEduardo Julian2019-03-13 19:55:56 -0400
committerEduardo Julian2019-03-13 19:55:56 -0400
commitd98d1cb26f8cd3aa49f9c1e9f461ae0ee176df7c (patch)
treeb3500454334fce41b034ab37a2e0594b62354eb2 /lux-js/source
parentf49a6d1b8ae5db27270f99ecf92c40c74a4334e3 (diff)
The general shape of the compiler has been recognized as a program unto itself (albeit a program which must be parameterized).
Diffstat (limited to 'lux-js/source')
-rw-r--r--lux-js/source/program.lux9
1 files changed, 5 insertions, 4 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux
index 07e0b601a..f927a0cef 100644
--- a/lux-js/source/program.lux
+++ b/lux-js/source/program.lux
@@ -23,9 +23,7 @@
["_" js]]
[tool
[compiler
- ["." cli]
["." name]
- ["/" program]
[phase
[macro (#+ Expander)]
["." generation
@@ -33,7 +31,10 @@
["." runtime]
["." extension]]]]
[default
- ["." platform (#+ Platform)]]]]])
+ ["." platform (#+ Platform)]]]]]
+ [program
+ ["/" compositor
+ ["/." cli]]])
(import: #long java/lang/String)
@@ -482,5 +483,5 @@
#platform.phase js.generate
#platform.runtime runtime.generate})))
-(program: [{service cli.service}]
+(program: [{service /cli.service}]
(/.compiler ..expander ..platform extension.bundle service))