aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/tool/compiler/phase/synthesis.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/tool/compiler/phase/synthesis.lux')
-rw-r--r--stdlib/source/lux/tool/compiler/phase/synthesis.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/lux/tool/compiler/phase/synthesis.lux b/stdlib/source/lux/tool/compiler/phase/synthesis.lux
index c5152ff6a..3da088ccf 100644
--- a/stdlib/source/lux/tool/compiler/phase/synthesis.lux
+++ b/stdlib/source/lux/tool/compiler/phase/synthesis.lux
@@ -7,12 +7,12 @@
["." maybe]
["." error]
[collection
- ["." list ("#/." functor)]
+ ["." list ("#;." functor)]
["." dictionary (#+ Dictionary)]]]]
["." / #_
["#." function]
["#." case]
- ["#/" // ("#/." monad)
+ ["#/" // ("#;." monad)
["#." extension]
["#/" // #_
["#." analysis (#+ Analysis)]
@@ -42,7 +42,7 @@
Phase
(case analysis
(#///analysis.Primitive analysis')
- (///wrap (#/.Primitive (..primitive analysis')))
+ (//;wrap (#/.Primitive (..primitive analysis')))
(#///analysis.Structure structure)
(case structure
@@ -54,10 +54,10 @@
(#///analysis.Tuple tuple)
(|> tuple
(monad.map //.monad phase)
- (///map (|>> /.tuple))))
+ (//;map (|>> /.tuple))))
(#///analysis.Reference reference)
- (///wrap (#/.Reference reference))
+ (//;wrap (#/.Reference reference))
(#///analysis.Case inputA branchesAB+)
(/case.synthesize phase inputA branchesAB+)
@@ -85,5 +85,5 @@
(wrap (#/.Extension [name argsS+])))))))
_
- (///wrap (undefined))
+ (//;wrap (undefined))
))