aboutsummaryrefslogtreecommitdiff
path: root/lux-js/source
diff options
context:
space:
mode:
authorEduardo Julian2021-09-04 12:49:52 -0400
committerEduardo Julian2021-09-04 12:49:52 -0400
commitfc8bebd3b3c5f050ea92e72eecbd9f6df09f28db (patch)
tree24858adac0e67228620b7e9166e3b7335be9fd5a /lux-js/source
parent891b1cfc82322f8017f0a4f6b707d6fe52024545 (diff)
De-taggification | part 2
Diffstat (limited to 'lux-js/source')
-rw-r--r--lux-js/source/program.lux44
1 files changed, 22 insertions, 22 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux
index 0fcf22f56..897eb6900 100644
--- a/lux-js/source/program.lux
+++ b/lux-js/source/program.lux
@@ -1,27 +1,27 @@
(.module:
[library
- [lux #*
- [program (#+ program:)]
- ["." ffi (#+ import:)]
+ [lux "*"
+ [program {"+" [program:]}]
+ ["." ffi {"+" [import:]}]
["." debug]
[abstract
- [monad (#+ do)]]
+ [monad {"+" [do]}]]
[control
["." maybe]
- ["." try (#+ Try)]
- ["." exception (#+ exception:)]
- ["." io (#+ IO io)]
+ ["." try {"+" [Try]}]
+ ["." exception {"+" [exception:]}]
+ ["." io {"+" [IO io]}]
["." function]
[concurrency
- ["." async (#+ Async)]]]
+ ["." async {"+" [Async]}]]]
[data
["." product]
[text
- ["%" format (#+ format)]
+ ["%" format {"+" [format]}]
[encoding
["." utf8]]]
[collection
- ["." array (#+ Array)]]]
+ ["." array {"+" [Array]}]]]
[macro
["." template]]
[math
@@ -29,38 +29,38 @@
["n" nat]
["i" int]
["." i64]]]
- ["." world #_
+ ["." world "_"
["." file]
["#/." program]]
["@" target
["_" js]]
[tool
[compiler
- ["." phase (#+ Operation Phase)]
+ ["." phase {"+" [Operation Phase]}]
[reference
- [variable (#+ Register)]]
+ [variable {"+" [Register]}]]
[language
[lux
- [program (#+ Program)]
- [generation (#+ Context Host)]
+ [program {"+" [Program]}]
+ [generation {"+" [Context Host]}]
[analysis
- [macro (#+ Expander)]]
+ [macro {"+" [Expander]}]]
[phase
- ["." extension (#+ Extender Handler)
+ ["." extension {"+" [Extender Handler]}
["#/." bundle]
- ["." analysis #_
+ ["." analysis "_"
["#" js]]
- ["." generation #_
+ ["." generation "_"
["#" js]]]
[generation
["." reference]
["." js
["." runtime]]]]]]
[default
- ["." platform (#+ Platform)]]
+ ["." platform {"+" [Platform]}]]
[meta
- [archive (#+ Archive)]
- ["." packager #_
+ [archive {"+" [Archive]}]
+ ["." packager "_"
["#" script]]]]]]]
[program
["/" compositor