aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/compiler/default/repl/type.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/language/compiler/default/repl/type.lux41
1 files changed, 23 insertions, 18 deletions
diff --git a/stdlib/source/lux/language/compiler/default/repl/type.lux b/stdlib/source/lux/language/compiler/default/repl/type.lux
index 30131d159..a9342ab6a 100644
--- a/stdlib/source/lux/language/compiler/default/repl/type.lux
+++ b/stdlib/source/lux/language/compiler/default/repl/type.lux
@@ -1,22 +1,27 @@
(.module:
- lux
- (lux (control [monad (#+ do)]
- ["ex" exception (#+ exception:)]
- ["p" parser]
- pipe)
- (data [error (#+ Error)]
- text/format
- (format [xml (#+ XML)]
- [json (#+ JSON)])
- (collection [list]))
- (time [instant (#+ Instant)]
- [duration (#+ Duration)]
- [date (#+ Date)])
- [function]
- [macro]
- (macro [code]
- [poly (#+ Poly)])
- (language [type])))
+ [lux #*
+ [control
+ [monad (#+ do)]
+ ["ex" exception (#+ exception:)]
+ ["p" parser]
+ pipe]
+ [data
+ [error (#+ Error)]
+ [text
+ format]
+ [format
+ [xml (#+ XML)]
+ [json (#+ JSON)]]
+ [collection [list]]]
+ [time
+ [instant (#+ Instant)]
+ [duration (#+ Duration)]
+ [date (#+ Date)]]
+ [function]
+ ["." macro
+ [code]
+ [poly (#+ Poly)]]
+ [language [type]]])
(exception: #export (cannot-represent-value {type Type})
(ex.report ["Type" (%type type)]))