diff options
author | Eduardo Julian | 2019-03-13 19:39:56 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-03-13 19:39:56 -0400 |
commit | f49a6d1b8ae5db27270f99ecf92c40c74a4334e3 (patch) | |
tree | 0eb60a414fb491f6f302bc997416f51c53d1f695 /lux-js/source | |
parent | d5e630c8f1db51cb493ad683f06ca9e2dd521478 (diff) |
- Re-named "lux/tool/compiler/phase/generation/js/expression" to "lux/tool/compiler/phase/generation/js".
- Did same thing for Scheme.
Diffstat (limited to '')
-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)) |