aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/compiler/analysis/case
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/language/compiler/analysis/case')
-rw-r--r--stdlib/source/lux/language/compiler/analysis/case/coverage.lux25
1 files changed, 14 insertions, 11 deletions
diff --git a/stdlib/source/lux/language/compiler/analysis/case/coverage.lux b/stdlib/source/lux/language/compiler/analysis/case/coverage.lux
index c01a7303a..bce8512e5 100644
--- a/stdlib/source/lux/language/compiler/analysis/case/coverage.lux
+++ b/stdlib/source/lux/language/compiler/analysis/case/coverage.lux
@@ -1,15 +1,18 @@
(.module:
- lux
- (lux (control [monad (#+ do)]
- ["ex" exception (#+ exception:)]
- equivalence)
- (data [bool ("bool/" Equivalence<Bool>)]
- [number]
- ["e" error ("error/" Monad<Error>)]
- [maybe]
- text/format
- (collection [list ("list/" Fold<List>)]
- ["dict" dictionary (#+ Dictionary)])))
+ [lux #*
+ [control
+ [monad (#+ do)]
+ ["ex" exception (#+ exception:)]
+ equivalence]
+ [data
+ [bool ("bool/" Equivalence<Bool>)]
+ [number]
+ ["e" error ("error/" Monad<Error>)]
+ [maybe]
+ [text format]
+ [collection
+ [list ("list/" Fold<List>)]
+ ["dict" dictionary (#+ Dictionary)]]]]
[//// ("operation/" Monad<Operation>)]
[/// (#+ Pattern Variant Operation)])