aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/program.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-07-03 03:12:11 -0400
committerEduardo Julian2022-07-03 03:12:11 -0400
commit700628f36e1ac846f007cec855b0f9ecdbb66c80 (patch)
tree6a8a259c854c429d650fe8b7c4bf2b224c47be97 /lux-jvm/source/program.lux
parent9e7ddacf853efd7a18c1911d2f287d483b083229 (diff)
Moved "lux/target" to "lux/meta/target".
Diffstat (limited to 'lux-jvm/source/program.lux')
-rw-r--r--lux-jvm/source/program.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/lux-jvm/source/program.lux b/lux-jvm/source/program.lux
index 8d9dcdb1c..528482b77 100644
--- a/lux-jvm/source/program.lux
+++ b/lux-jvm/source/program.lux
@@ -2,7 +2,6 @@
[library
[lux (.except Definition)
[program (.only program:)]
- ["@" target]
["[0]" ffi (.only import)]
[abstract
[monad (.only do)]]
@@ -17,14 +16,15 @@
["%" \\format (.only format)]]
[collection
[array (.only Array)]]]
+ [meta
+ ["@" target (.only)
+ ["[0]" jvm
+ [bytecode (.only Bytecode)]
+ ["[1]/[0]" type
+ ["[1]/[0]" box]]]]]
["[0]" world
["[0]" file]
- ["[1]/[0]" program]]
- [target
- ["[0]" jvm
- [bytecode (.only Bytecode)]
- ["[1]/[0]" type
- ["[1]/[0]" box]]]]
+ ["[1]/[0]" environment]]
[tool
[compiler (.only)
["[0]" phase]
@@ -158,7 +158,7 @@
(def (declare_success! _)
(-> Any (Async Any))
- (async.future (at world/program.default exit +0)))
+ (async.future (at world/environment.default exit +0)))
(def (lux_compiler it)
(-> Any platform.Custom)