aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/parser
diff options
context:
space:
mode:
authorEduardo Julian2022-03-16 08:37:23 -0400
committerEduardo Julian2022-03-16 08:37:23 -0400
commitbf53ee92fc3c33a4885aa227e55d24f7ba3cb2c4 (patch)
tree49683a62ae8e110c62b42a9a6386bb2ddb3c47c6 /stdlib/source/test/lux/control/parser
parentd710d9f4fc098e7c243c8a5f23cd42683f13e07f (diff)
De-sigil-ification: prefix :
Diffstat (limited to 'stdlib/source/test/lux/control/parser')
-rw-r--r--stdlib/source/test/lux/control/parser/binary.lux46
-rw-r--r--stdlib/source/test/lux/control/parser/type.lux26
-rw-r--r--stdlib/source/test/lux/control/parser/xml.lux6
3 files changed, 39 insertions, 39 deletions
diff --git a/stdlib/source/test/lux/control/parser/binary.lux b/stdlib/source/test/lux/control/parser/binary.lux
index 00ff979d9..330349078 100644
--- a/stdlib/source/test/lux/control/parser/binary.lux
+++ b/stdlib/source/test/lux/control/parser/binary.lux
@@ -99,19 +99,19 @@
(random.list size again))]
($_ random.and
..random_location
- (: (Random (Code' (Ann Location)))
- ($_ random.or
- random.bit
- random.nat
- random.int
- random.rev
- random.safe_frac
- ..random_text
- ..random_symbol
- random_sequence
- random_sequence
- random_sequence
- )))))))
+ (is (Random (Code' (Ann Location)))
+ ($_ random.or
+ random.bit
+ random.nat
+ random.int
+ random.rev
+ random.safe_frac
+ ..random_text
+ ..random_symbol
+ random_sequence
+ random_sequence
+ random_sequence
+ )))))))
(def: random_type
(Random Type)
@@ -282,8 +282,8 @@
(_.cover [/.or format.or]
(|> expected
(format.result (format.or format.bit format.nat))
- (/.result (: (/.Parser (Either Bit Nat))
- (/.or /.bit /.nat)))
+ (/.result (is (/.Parser (Either Bit Nat))
+ (/.or /.bit /.nat)))
(!expect (^.multi {try.#Success actual}
(# (sum.equivalence bit.equivalence n.equivalence) =
expected
@@ -296,8 +296,8 @@
(_.cover [/.invalid_tag]
(|> [tag value]
(format.result (format.and format.bits/8 format.bit))
- (/.result (: (/.Parser (Either Bit Nat))
- (/.or /.bit /.nat)))
+ (/.result (is (/.Parser (Either Bit Nat))
+ (/.or /.bit /.nat)))
(!expect (^.multi {try.#Failure error}
(exception.match? /.invalid_tag error))))))
(do [! random.monad]
@@ -306,12 +306,12 @@
(|> expected
(format.result (format.rec (|>> (format.and format.nat)
(format.or format.any))))
- (/.result (: (/.Parser (List Nat))
- (/.rec
- (function (_ again)
- (/.or /.any
- (<>.and /.nat
- again))))))
+ (/.result (is (/.Parser (List Nat))
+ (/.rec
+ (function (_ again)
+ (/.or /.any
+ (<>.and /.nat
+ again))))))
(!expect (^.multi {try.#Success actual}
(# (list.equivalence n.equivalence) =
expected
diff --git a/stdlib/source/test/lux/control/parser/type.lux b/stdlib/source/test/lux/control/parser/type.lux
index 0a3bf5945..93020e506 100644
--- a/stdlib/source/test/lux/control/parser/type.lux
+++ b/stdlib/source/test/lux/control/parser/type.lux
@@ -153,19 +153,19 @@
{.#Parameter 0})
(!expect {try.#Success [quantification##binding argument##binding _]})))
(_.cover [/.argument]
- (let [argument? (: (-> Nat Nat Bit)
- (function (_ @ expected)
- (|> (/.result (<| (/.with_extension quantification)
- (/.with_extension argument)
- (/.with_extension quantification)
- (/.with_extension argument)
- (do //.monad
- [env /.env
- _ /.any]
- (in (/.argument env @))))
- not_parameter)
- (!expect (^.multi {try.#Success [_ _ _ _ actual]}
- (n.= expected actual))))))]
+ (let [argument? (is (-> Nat Nat Bit)
+ (function (_ @ expected)
+ (|> (/.result (<| (/.with_extension quantification)
+ (/.with_extension argument)
+ (/.with_extension quantification)
+ (/.with_extension argument)
+ (do //.monad
+ [env /.env
+ _ /.any]
+ (in (/.argument env @))))
+ not_parameter)
+ (!expect (^.multi {try.#Success [_ _ _ _ actual]}
+ (n.= expected actual))))))]
(and (argument? 0 2)
(argument? 1 3)
(argument? 2 0))))
diff --git a/stdlib/source/test/lux/control/parser/xml.lux b/stdlib/source/test/lux/control/parser/xml.lux
index 40582948d..c3acb66ba 100644
--- a/stdlib/source/test/lux/control/parser/xml.lux
+++ b/stdlib/source/test/lux/control/parser/xml.lux
@@ -147,9 +147,9 @@
(/.attribute [expected expected]))
{xml.#Text expected}]])
(do [! random.monad]
- [.let [node (: (-> xml.Tag (List xml.XML) xml.XML)
- (function (_ tag children)
- {xml.#Node tag (dictionary.empty symbol.hash) children}))]
+ [.let [node (is (-> xml.Tag (List xml.XML) xml.XML)
+ (function (_ tag children)
+ {xml.#Node tag (dictionary.empty symbol.hash) children}))]
parent ..random_tag
right ..random_tag
wrong (random.only (|>> (symbol#= right) not)