aboutsummaryrefslogtreecommitdiff
path: root/lux-js/source
diff options
context:
space:
mode:
authorEduardo Julian2021-07-14 13:59:02 -0400
committerEduardo Julian2021-07-14 13:59:02 -0400
commitd6c48ae6a8b58f5974133170863a31c70f0123d1 (patch)
tree008eb88328009e2f3f07002f35c0378a8a137ed0 /lux-js/source
parent2431e767a09894c2f685911ba7f1ba0b7de2a165 (diff)
Normalized the hierarchy of the standard library modules.
Diffstat (limited to 'lux-js/source')
-rw-r--r--lux-js/source/program.lux125
1 files changed, 63 insertions, 62 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux
index 28b18227f..6163c2dfa 100644
--- a/lux-js/source/program.lux
+++ b/lux-js/source/program.lux
@@ -1,66 +1,67 @@
(.module:
- [lux #*
- [program (#+ program:)]
- ["." ffi (#+ import:)]
- ["." debug]
- [abstract
- [monad (#+ do)]]
- [control
- ["." try (#+ Try)]
- ["." exception (#+ exception:)]
- ["." io (#+ IO io)]
- ["." function]
- [concurrency
- ["." promise (#+ Promise)]]]
- [data
- ["." product]
- ["." maybe]
- [text
- ["%" format (#+ format)]
- [encoding
- ["." utf8]]]
- [collection
- ["." array (#+ Array)]]]
- [macro
- ["." template]]
- [math
- [number
- ["n" nat]
- ["i" int]
- ["." i64]]]
- ["." world #_
- ["." file]
- ["#/." program]]
- ["@" target
- ["_" js]]
- [tool
- [compiler
- ["." phase (#+ Operation Phase)]
- [reference
- [variable (#+ Register)]]
- [language
- [lux
- [program (#+ Program)]
- [generation (#+ Context Host)]
- [analysis
- [macro (#+ Expander)]]
- [phase
- ["." extension (#+ Extender Handler)
- ["#/." bundle]
- ["." analysis #_
- ["#" js]]
- ["." generation #_
- ["#" js]]]
- [generation
- ["." reference]
- ["." js
- ["." runtime]]]]]]
- [default
- ["." platform (#+ Platform)]]
- [meta
- [archive (#+ Archive)]
- ["." packager #_
- ["#" script]]]]]]
+ [library
+ [lux #*
+ [program (#+ program:)]
+ ["." ffi (#+ import:)]
+ ["." debug]
+ [abstract
+ [monad (#+ do)]]
+ [control
+ ["." try (#+ Try)]
+ ["." exception (#+ exception:)]
+ ["." io (#+ IO io)]
+ ["." function]
+ [concurrency
+ ["." promise (#+ Promise)]]]
+ [data
+ ["." product]
+ ["." maybe]
+ [text
+ ["%" format (#+ format)]
+ [encoding
+ ["." utf8]]]
+ [collection
+ ["." array (#+ Array)]]]
+ [macro
+ ["." template]]
+ [math
+ [number
+ ["n" nat]
+ ["i" int]
+ ["." i64]]]
+ ["." world #_
+ ["." file]
+ ["#/." program]]
+ ["@" target
+ ["_" js]]
+ [tool
+ [compiler
+ ["." phase (#+ Operation Phase)]
+ [reference
+ [variable (#+ Register)]]
+ [language
+ [lux
+ [program (#+ Program)]
+ [generation (#+ Context Host)]
+ [analysis
+ [macro (#+ Expander)]]
+ [phase
+ ["." extension (#+ Extender Handler)
+ ["#/." bundle]
+ ["." analysis #_
+ ["#" js]]
+ ["." generation #_
+ ["#" js]]]
+ [generation
+ ["." reference]
+ ["." js
+ ["." runtime]]]]]]
+ [default
+ ["." platform (#+ Platform)]]
+ [meta
+ [archive (#+ Archive)]
+ ["." packager #_
+ ["#" script]]]]]]]
[program
["/" compositor
["#." cli]