aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/format/json.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/data/format/json.lux')
-rw-r--r--stdlib/source/lux/data/format/json.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/lux/data/format/json.lux b/stdlib/source/lux/data/format/json.lux
index e9b6ab8b6..643d12969 100644
--- a/stdlib/source/lux/data/format/json.lux
+++ b/stdlib/source/lux/data/format/json.lux
@@ -81,8 +81,8 @@
(wrap (list (` (: JSON (#..Array ((~! row) (~+ (list@map wrapper members))))))))
[_ (#.Record pairs)]
- (do {@ ..monad}
- [pairs' (monad.map @
+ (do {! ..monad}
+ [pairs' (monad.map !
(function (_ [slot value])
(case slot
[_ (#.Text key-name)]
@@ -282,15 +282,15 @@
(def: number~
(Parser Number)
- (do {@ <>.monad}
+ (do {! <>.monad}
[signed? (<>.parses? (<t>.this "-"))
digits (<t>.many <t>.decimal)
decimals (<>.default "0"
- (do @
+ (do !
[_ (<t>.this ".")]
(<t>.many <t>.decimal)))
exp (<>.default ""
- (do @
+ (do !
[mark (<t>.one-of "eE")
signed?' (<>.parses? (<t>.this "-"))
offset (<t>.many <t>.decimal)]
@@ -324,11 +324,11 @@
(Parser String)
(<| (<t>.enclosed [text.double-quote text.double-quote])
(loop [_ []])
- (do {@ <>.monad}
+ (do {! <>.monad}
[chars (<t>.some (<t>.none-of (text@compose "\" text.double-quote)))
stop <t>.peek])
(if (text@= "\" stop)
- (do @
+ (do !
[escaped escaped~
next-chars (recur [])]
(wrap ($_ text@compose chars escaped next-chars)))