aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/tool/compiler/language/lux/synthesis.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/tool/compiler/language/lux/synthesis.lux')
-rw-r--r--stdlib/source/library/lux/tool/compiler/language/lux/synthesis.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/library/lux/tool/compiler/language/lux/synthesis.lux b/stdlib/source/library/lux/tool/compiler/language/lux/synthesis.lux
index 806fdc3c9..58dc336dd 100644
--- a/stdlib/source/library/lux/tool/compiler/language/lux/synthesis.lux
+++ b/stdlib/source/library/lux/tool/compiler/language/lux/synthesis.lux
@@ -279,7 +279,7 @@
(|> (#.Item item)
(list\map (function (_ [test then])
(format (<format> test) " " (%path' %then then))))
- (text.join_with " ")
+ (text.interposed " ")
(text.enclosed ["(? " ")"]))])
([#I64_Fork (|>> .int %.int)]
[#F64_Fork %.frac]
@@ -341,7 +341,7 @@
(#analysis.Tuple members)
(|> members
(list\map %synthesis)
- (text.join_with " ")
+ (text.interposed " ")
(text.enclosed ["[" "]"])))
(#Reference reference)
@@ -354,7 +354,7 @@
(#Abstraction [environment arity body])
(let [environment' (|> environment
(list\map %synthesis)
- (text.join_with " ")
+ (text.interposed " ")
(text.enclosed ["[" "]"]))]
(|> (format environment' " " (%.nat arity) " " (%synthesis body))
(text.enclosed ["(#function " ")"])))
@@ -362,7 +362,7 @@
(#Apply func args)
(|> args
(list\map %synthesis)
- (text.join_with " ")
+ (text.interposed " ")
(format (%synthesis func) " ")
(text.enclosed ["(" ")"])))
@@ -392,7 +392,7 @@
(|> (format (%.nat (get@ #start scope))
" " (|> (get@ #inits scope)
(list\map %synthesis)
- (text.join_with " ")
+ (text.interposed " ")
(text.enclosed ["[" "]"]))
" " (%synthesis (get@ #iteration scope)))
(text.enclosed ["(#loop " ")"]))
@@ -400,12 +400,12 @@
(#Recur args)
(|> args
(list\map %synthesis)
- (text.join_with " ")
+ (text.interposed " ")
(text.enclosed ["(#recur " ")"]))))
(#Extension [name args])
(|> (list\map %synthesis args)
- (text.join_with " ")
+ (text.interposed " ")
(format (%.text name) " ")
(text.enclosed ["(" ")"]))))