aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'lux-jvm/source/program.lux')
-rw-r--r--lux-jvm/source/program.lux113
1 files changed, 57 insertions, 56 deletions
diff --git a/lux-jvm/source/program.lux b/lux-jvm/source/program.lux
index e9f58a71b..185d2d9ba 100644
--- a/lux-jvm/source/program.lux
+++ b/lux-jvm/source/program.lux
@@ -1,60 +1,61 @@
(.module:
- [lux (#- Definition)
- [program (#+ program:)]
- ["@" target]
- ["." ffi (#+ import:)]
- [abstract
- [monad (#+ do)]]
- [control
- ["." io (#+ IO)]
- ["." try (#+ Try)]
- [concurrency
- ["." promise (#+ Promise)]]]
- [data
- ["." product]
- [text
- ["%" format (#+ format)]]
- [collection
- [array (#+ Array)]
- ["." dictionary]]]
- ["." world #_
- ["." file]
- ["#/." program]]
- [target
- ["." jvm #_
- [bytecode (#+ Bytecode)]
- ["#/." type
- ["#/." box]]]]
- [tool
- [compiler
- [reference (#+)]
- ["." phase]
- [default
- ["." platform (#+ Platform)]]
- [meta
- [archive (#+ Archive)]
- ["." packager #_
- ["#" jvm]]]
- [language
- [lux
- ["$" synthesis (#+ Synthesis)]
- ["." generation]
- [analysis
- [macro (#+ Expander)]]
- [phase
- [extension (#+ Phase Bundle Operation Handler Extender)
- ["." analysis #_
- ["#" jvm]]
- ## ["." generation #_
- ## ["#" jvm]]
- ## ["." directive #_
- ## ["#" jvm]]
- ]
- [generation
- ["." jvm #_
- ["#/." runtime]
- ## ["#/." host]
- ]]]]]]]]
+ [library
+ [lux (#- Definition)
+ [program (#+ program:)]
+ ["@" target]
+ ["." ffi (#+ import:)]
+ [abstract
+ [monad (#+ do)]]
+ [control
+ ["." io (#+ IO)]
+ ["." try (#+ Try)]
+ [concurrency
+ ["." promise (#+ Promise)]]]
+ [data
+ ["." product]
+ [text
+ ["%" format (#+ format)]]
+ [collection
+ [array (#+ Array)]
+ ["." dictionary]]]
+ ["." world #_
+ ["." file]
+ ["#/." program]]
+ [target
+ ["." jvm #_
+ [bytecode (#+ Bytecode)]
+ ["#/." type
+ ["#/." box]]]]
+ [tool
+ [compiler
+ [reference (#+)]
+ ["." phase]
+ [default
+ ["." platform (#+ Platform)]]
+ [meta
+ [archive (#+ Archive)]
+ ["." packager #_
+ ["#" jvm]]]
+ [language
+ [lux
+ ["$" synthesis (#+ Synthesis)]
+ ["." generation]
+ [analysis
+ [macro (#+ Expander)]]
+ [phase
+ [extension (#+ Phase Bundle Operation Handler Extender)
+ ["." analysis #_
+ ["#" jvm]]
+ ## ["." generation #_
+ ## ["#" jvm]]
+ ## ["." directive #_
+ ## ["#" jvm]]
+ ]
+ [generation
+ ["." jvm #_
+ ["#/." runtime]
+ ## ["#/." host]
+ ]]]]]]]]]
[program
["/" compositor
["/." cli]