aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/tool/compiler/language/lux/phase/extension/directive/lux.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/tool/compiler/language/lux/phase/extension/directive/lux.lux32
1 files changed, 16 insertions, 16 deletions
diff --git a/stdlib/source/library/lux/tool/compiler/language/lux/phase/extension/directive/lux.lux b/stdlib/source/library/lux/tool/compiler/language/lux/phase/extension/directive/lux.lux
index 46dd5d709..72b5692ed 100644
--- a/stdlib/source/library/lux/tool/compiler/language/lux/phase/extension/directive/lux.lux
+++ b/stdlib/source/library/lux/tool/compiler/language/lux/phase/extension/directive/lux.lux
@@ -1,19 +1,19 @@
(.module:
[library
- [lux #*
+ [lux "*"
["." meta]
[abstract
- ["." monad (#+ do)]]
+ ["." monad {"+" [do]}]]
[control
- [io (#+ IO)]
+ [io {"+" [IO]}]
["." try]
- ["." exception (#+ exception:)]
+ ["." exception {"+" [exception:]}]
["<>" parser
- ["<.>" code (#+ Parser)]]]
+ ["<.>" code {"+" [Parser]}]]]
[data
["." product]
["." text
- ["%" format (#+ format)]]
+ ["%" format {"+" [format]}]]
[collection
["." dictionary]]]
[macro
@@ -21,27 +21,27 @@
[math
[number
["n" nat]]]
- ["." type (#+ :sharing)
+ ["." type {"+" [:sharing]}
["." check]]]]
- ["." /// (#+ Extender)
+ ["." /// {"+" [Extender]}
["#." bundle]
["#." analysis]
- ["/#" // #_
+ ["/#" // "_"
[analysis
["." module]
[".A" type]]
- ["/#" // #_
+ ["/#" // "_"
["#." analysis
- [macro (#+ Expander)]
+ [macro {"+" [Expander]}]
["#/." evaluation]]
- ["#." synthesis (#+ Synthesis)]
- ["#." generation (#+ Context)]
- ["#." directive (#+ Import Requirements Phase Operation Handler Bundle)]
- ["#." program (#+ Program)]
+ ["#." synthesis {"+" [Synthesis]}]
+ ["#." generation {"+" [Context]}]
+ ["#." directive {"+" [Import Requirements Phase Operation Handler Bundle]}]
+ ["#." program {"+" [Program]}]
[///
["." phase]
[meta
- ["." archive (#+ Archive)]]]]]])
+ ["." archive {"+" [Archive]}]]]]]])
(def: .public (custom [syntax handler])
(All (_ anchor expression directive s)