aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/lua/runtime.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--new-luxc/source/luxc/lang/translation/lua/runtime.jvm.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/new-luxc/source/luxc/lang/translation/lua/runtime.jvm.lux b/new-luxc/source/luxc/lang/translation/lua/runtime.jvm.lux
index 50b8008dd..137e5d4ab 100644
--- a/new-luxc/source/luxc/lang/translation/lua/runtime.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/lua/runtime.jvm.lux
@@ -77,7 +77,7 @@
_
(` (let [(~' @) (~ runtime)
(~+ (|> (list.zip2 argsC+ argsLC+)
- (list/map (function [[left right]] (list left right)))
+ (list/map (function (_ [left right]) (list left right)))
list/join))]
(lua.function! (~ runtime) (list (~+ argsLC+))
(~ definition))))))))))))
@@ -95,7 +95,7 @@
(lua.return! "temp"))))
(runtime: (array//concat left right)
- (let [copy! (function [input output]
+ (let [copy! (function (_ input output)
(lua.for-step! "idx" (lua.int 1) (format input ".n") (lua.int 1)
(lua.apply "table.insert" (list output (lua.nth "idx" input)))))]
(lua.block! (list (lua.local! "temp" (#.Some (lua.array (list))))