aboutsummaryrefslogtreecommitdiff
path: root/lux-js/source
diff options
context:
space:
mode:
authorEduardo Julian2021-09-13 00:29:57 -0400
committerEduardo Julian2021-09-13 00:29:57 -0400
commit376c3e472fbb1e2656f8c61b26e0276570609aa1 (patch)
treebc76d7aeff4f2b889ae262a64dc8d26b0476068d /lux-js/source
parent2dbbaaec93a53f8dd0b96a0028b9cf125c9066cd (diff)
Updated only/except import syntax to take into account record => variant syntax change.
Diffstat (limited to 'lux-js/source')
-rw-r--r--lux-js/source/program.lux34
1 files changed, 17 insertions, 17 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux
index 61293a52c..c9eb90f54 100644
--- a/lux-js/source/program.lux
+++ b/lux-js/source/program.lux
@@ -1,27 +1,27 @@
(.module:
[library
[lux "*"
- [program {"+" [program:]}]
- ["[0]" ffi {"+" [import:]}]
+ [program {"+" program:}]
+ ["[0]" ffi {"+" import:}]
["[0]" debug]
[abstract
- [monad {"+" [do]}]]
+ [monad {"+" do}]]
[control
["[0]" maybe]
- ["[0]" try {"+" [Try]}]
- ["[0]" exception {"+" [exception:]}]
- ["[0]" io {"+" [IO io]}]
+ ["[0]" try {"+" Try}]
+ ["[0]" exception {"+" exception:}]
+ ["[0]" io {"+" IO io}]
["[0]" function]
[concurrency
- ["[0]" async {"+" [Async]}]]]
+ ["[0]" async {"+" Async}]]]
[data
["[0]" product]
[text
- ["%" format {"+" [format]}]
+ ["%" format {"+" format}]
[encoding
["[0]" utf8]]]
[collection
- ["[0]" array {"+" [Array]}]]]
+ ["[0]" array {"+" Array}]]]
[macro
["[0]" template]]
[math
@@ -36,17 +36,17 @@
["_" js]]
[tool
[compiler
- ["[0]" phase {"+" [Operation Phase]}]
+ ["[0]" 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
- ["[0]" extension {"+" [Extender Handler]}
+ ["[0]" extension {"+" Extender Handler}
["[1]/[0]" bundle]
["[0]" analysis "_"
["[1]" js]]
@@ -57,9 +57,9 @@
["[0]" js
["[0]" runtime]]]]]]
[default
- ["[0]" platform {"+" [Platform]}]]
+ ["[0]" platform {"+" Platform}]]
[meta
- [archive {"+" [Archive]}]
+ [archive {"+" Archive}]
["[0]" packager "_"
["[1]" script]]]]]]]
[program