aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/test/test/luxc/lang/analysis/procedure/host.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--new-luxc/test/test/luxc/lang/analysis/procedure/host.jvm.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/new-luxc/test/test/luxc/lang/analysis/procedure/host.jvm.lux b/new-luxc/test/test/luxc/lang/analysis/procedure/host.jvm.lux
index efc550ff5..77fb71d27 100644
--- a/new-luxc/test/test/luxc/lang/analysis/procedure/host.jvm.lux
+++ b/new-luxc/test/test/luxc/lang/analysis/procedure/host.jvm.lux
@@ -284,7 +284,7 @@
("jvm array new" (~ (code.nat size)))))
boxedT (#.Primitive boxed (list))
boxedTC (` (+0 (~ (code.text boxed)) (+0)))
- multi-arrayT (list/fold (function [_ innerT]
+ multi-arrayT (list/fold (function (_ _ innerT)
(|> innerT (list) (#.Primitive "#Array")))
boxedT
(list.n/range +1 level))]]
@@ -330,7 +330,7 @@
(do @
[[unboxed boxed] array-type
[!unboxed !boxed] (|> array-type
- (r.filter (function [[!unboxed !boxed]]
+ (r.filter (function (_ [!unboxed !boxed])
(not (text/= boxed !boxed)))))
#let [boxedT (#.Primitive boxed (list))
boxedC (`' ("lux check" (+0 (~ (code.text boxed)) (+0))
@@ -341,7 +341,7 @@
("jvm object null")))]
throwable (|> r.nat
(:: @ map (n/% (n/inc (list.size throwables))))
- (:: @ map (function [idx]
+ (:: @ map (function (_ idx)
(|> throwables
(list.nth idx)
(maybe.default "java.lang.Object")))))