aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/host/ruby.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/host/ruby.lux')
-rw-r--r--new-luxc/source/luxc/lang/host/ruby.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/new-luxc/source/luxc/lang/host/ruby.lux b/new-luxc/source/luxc/lang/host/ruby.lux
index 3f179105d..c2bc6e95f 100644
--- a/new-luxc/source/luxc/lang/host/ruby.lux
+++ b/new-luxc/source/luxc/lang/host/ruby.lux
@@ -46,7 +46,7 @@
(-> (List [Expression Expression]) Expression)
(format "({"
(|> kvs
- (list/map (.function [[k v]]
+ (list/map (.function (_ [k v])
(format k " => " v)))
(text.join-with ", "))
"})"))
@@ -111,7 +111,7 @@
(def: #export (cond! clauses else!)
(-> (List [Expression Statement]) Statement Statement)
- (list/fold (.function [[test then!] next!]
+ (list/fold (.function (_ [test then!] next!)
(if! test then! next!))
else!
(list.reverse clauses)))
@@ -141,7 +141,7 @@
(format "begin"
"\n" body "\n"
(|> rescues
- (list/map (function [[ex-classes ex-value ex-handler]]
+ (list/map (function (_ [ex-classes ex-value ex-handler])
(format "rescue " (text.join-with ", " ex-classes)
(case ex-value
"" ""