aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/compiler/analysis/structure.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/language/compiler/analysis/structure.lux')
-rw-r--r--stdlib/source/lux/language/compiler/analysis/structure.lux26
1 files changed, 14 insertions, 12 deletions
diff --git a/stdlib/source/lux/language/compiler/analysis/structure.lux b/stdlib/source/lux/language/compiler/analysis/structure.lux
index 382eab486..d3ce95cdd 100644
--- a/stdlib/source/lux/language/compiler/analysis/structure.lux
+++ b/stdlib/source/lux/language/compiler/analysis/structure.lux
@@ -1,24 +1,26 @@
(.module:
[lux #*
[control
- [monad (#+ do)]
+ ["." monad (#+ do)]
["ex" exception (#+ exception:)]]
[data
- [ident]
- [number]
- [product]
- [maybe]
- [text format]
- [collection [list ("list/" Functor<List>)]
+ ["." ident]
+ ["." number]
+ ["." product]
+ ["." maybe]
+ [text
+ format]
+ [collection
+ ["." list ("list/" Functor<List>)]
["dict" dictionary (#+ Dictionary)]]]
["." macro
- [code]]]
- [// (#+ Tag Analysis Operation Compiler)
+ ["." code]]]
+ ["." // (#+ Tag Analysis Operation Compiler)
["//." type]
- [primitive]
- [inference]
+ ["." primitive]
+ ["." inference]
["/." //
- [extension]
+ ["." extension]
["//." //
["." type
["tc" check]]]]])