aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/compiler/synthesis/function.lux
diff options
context:
space:
mode:
authorEduardo Julian2018-07-11 19:47:40 -0400
committerEduardo Julian2018-07-11 19:47:40 -0400
commitfdfd7036806fe62ffaf054b61fbf16bbfb002b7c (patch)
tree21a0b03e30df303e111cc8e353dec9865b704917 /stdlib/source/lux/language/compiler/synthesis/function.lux
parente7fc42bbc7d0b56384864a6fcd1b1e0bf8cd880b (diff)
- Improvements to import syntax [part 2].
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/language/compiler/synthesis/function.lux21
1 files changed, 12 insertions, 9 deletions
diff --git a/stdlib/source/lux/language/compiler/synthesis/function.lux b/stdlib/source/lux/language/compiler/synthesis/function.lux
index 40e8f30c3..2b9cffd19 100644
--- a/stdlib/source/lux/language/compiler/synthesis/function.lux
+++ b/stdlib/source/lux/language/compiler/synthesis/function.lux
@@ -1,13 +1,16 @@
(.module:
- [lux (#- function)]
- (lux (control [monad (#+ do)]
- [state]
- pipe
- ["ex" exception (#+ exception:)])
- (data [maybe ("maybe/" Monad<Maybe>)]
- [error]
- (collection [list ("list/" Functor<List> Monoid<List> Fold<List>)]
- ["dict" dictionary (#+ Dictionary)])))
+ [lux (#- function)
+ [control
+ [monad (#+ do)]
+ [state]
+ pipe
+ ["ex" exception (#+ exception:)]]
+ [data
+ [maybe ("maybe/" Monad<Maybe>)]
+ [error]
+ [collection
+ [list ("list/" Functor<List> Monoid<List> Fold<List>)]
+ ["dict" dictionary (#+ Dictionary)]]]]
[///reference (#+ Variable)]
[///compiler (#+ Operation)]
[///analysis (#+ Environment Arity Analysis)]