aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi.old.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-06-16 00:48:19 -0400
committerEduardo Julian2022-06-16 00:48:19 -0400
commit9e2f1e76f2c8df01ed7687d934c3210fcf676bd6 (patch)
tree115fab5bd8a5f53dc0d13ce5453095324a83496f /stdlib/source/test/lux/ffi.old.lux
parentf92c806ee8da63f04bbefbf558f6249bacdb47ea (diff)
De-sigil-ification: suffix : [Part 13]
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/ffi.old.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/test/lux/ffi.old.lux b/stdlib/source/test/lux/ffi.old.lux
index 917e18949..9fc124852 100644
--- a/stdlib/source/test/lux/ffi.old.lux
+++ b/stdlib/source/test/lux/ffi.old.lux
@@ -71,7 +71,7 @@
(up [] java/lang/Long)
(down [] java/lang/Long))
-(def: (test_object increase counter)
+(def (test_object increase counter)
(-> Int Int test/lux/ffi/TestInterface)
(/.object [] [test/lux/ffi/TestInterface]
[]
@@ -88,7 +88,7 @@
test/lux/ffi/TestInterface
(test_object increase (i.- increase counter)))))
-(def: conversions
+(def conversions
Test
(do [! random.monad]
[long random.int
@@ -156,7 +156,7 @@
(|> capped <to> <from> /.int_to_long (i.= (/.int_to_long capped))))))))
))))
-(def: arrays
+(def arrays
Test
(do [! random.monad]
[size (|> random.nat (at ! each (|>> (n.% 100) (n.max 1))))
@@ -172,7 +172,7 @@
(i.= value)))
)))
-(def: null
+(def null
Test
(do random.monad
[sample (random.ascii 1)]
@@ -194,7 +194,7 @@
(not (/.null? (/.!!! (/.??? sample))))))
)))
-(def: miscellaneous
+(def miscellaneous
Test
(do random.monad
[sample (random.ascii 1)
@@ -233,7 +233,7 @@
(/.type (java/util/List java/lang/Byte)))))
)))
-(def: .public test
+(def .public test
(<| (_.covering /._)
(all _.and
..conversions