diff options
Diffstat (limited to 'lux-js/source/program.lux')
-rw-r--r-- | lux-js/source/program.lux | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux index 1bc5f64f4..07e0b601a 100644 --- a/lux-js/source/program.lux +++ b/lux-js/source/program.lux @@ -28,10 +28,9 @@ ["/" program] [phase [macro (#+ Expander)] - ["." translation - [js + ["." generation + ["." js ["." runtime] - ["." expression] ["." extension]]]] [default ["." platform (#+ Platform)]]]]]) @@ -460,7 +459,7 @@ (wrap [global value])))) (type: Host - (translation.Host _.Expression _.Statement)) + (generation.Host _.Expression _.Statement)) (def: host (IO Host) @@ -480,8 +479,8 @@ (wrap {#platform.&monad io.monad #platform.&file-system file.system #platform.host host - #platform.phase expression.translate - #platform.runtime runtime.translate}))) + #platform.phase js.generate + #platform.runtime runtime.generate}))) (program: [{service cli.service}] (/.compiler ..expander ..platform extension.bundle service)) |