aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/macro/code.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/macro/code.lux48
1 files changed, 24 insertions, 24 deletions
diff --git a/stdlib/source/lux/macro/code.lux b/stdlib/source/lux/macro/code.lux
index 82ccd1f9d..e2d528dad 100644
--- a/stdlib/source/lux/macro/code.lux
+++ b/stdlib/source/lux/macro/code.lux
@@ -10,9 +10,9 @@
["." int]
["." rev]
["." frac]]
- ["." text ("#@." monoid equivalence)]
+ ["." text ("#//." monoid equivalence)]
[collection
- ["." list ("#@." functor fold)]]]
+ ["." list ("#//." functor fold)]]]
[meta
["." location]]])
@@ -106,33 +106,33 @@
(text.encode value)
[_ (#.Tag name)]
- (text@compose "#" (:: name.codec encode name))
+ (text//compose "#" (:: name.codec encode name))
(^template [<tag> <open> <close>]
[_ (<tag> members)]
- ($_ text@compose
+ ($_ text//compose
<open>
- (list@fold (function (_ next prev)
- (let [next (format next)]
- (if (text@= "" prev)
- next
- ($_ text@compose prev " " next))))
- ""
- members)
+ (list//fold (function (_ next prev)
+ (let [next (format next)]
+ (if (text//= "" prev)
+ next
+ ($_ text//compose prev " " next))))
+ ""
+ members)
<close>))
([#.Form "(" ")"]
[#.Tuple "[" "]"])
[_ (#.Record pairs)]
- ($_ text@compose
+ ($_ text//compose
"{"
- (list@fold (function (_ [left right] prev)
- (let [next ($_ text@compose (format left) " " (format right))]
- (if (text@= "" prev)
- next
- ($_ text@compose prev " " next))))
- ""
- pairs)
+ (list//fold (function (_ [left right] prev)
+ (let [next ($_ text//compose (format left) " " (format right))]
+ (if (text//= "" prev)
+ next
+ ($_ text//compose prev " " next))))
+ ""
+ pairs)
"}")
))
@@ -144,15 +144,15 @@
(case ast
(^template [<tag>]
[location (<tag> parts)]
- [location (<tag> (list@map (replace original substitute) parts))])
+ [location (<tag> (list//map (replace original substitute) parts))])
([#.Form]
[#.Tuple])
[location (#.Record parts)]
- [location (#.Record (list@map (function (_ [left right])
- [(replace original substitute left)
- (replace original substitute right)])
- parts))]
+ [location (#.Record (list//map (function (_ [left right])
+ [(replace original substitute left)
+ (replace original substitute right)])
+ parts))]
_
ast)))