aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/jvm/loop.jvm.lux
diff options
context:
space:
mode:
authorEduardo Julian2018-04-06 08:32:41 -0400
committerEduardo Julian2018-04-06 08:32:41 -0400
commitca238f9c89d3156842b0a3d5fe24a5d69b2eedb0 (patch)
tree50ba106541f2357daf27393df28e8b263f7311e1 /new-luxc/source/luxc/lang/translation/jvm/loop.jvm.lux
parent84d7e87817cd2c074653b34d028c8fa807febc7f (diff)
- Adapted new-luxc's code to latest stdlib changes.
Diffstat (limited to '')
-rw-r--r--new-luxc/source/luxc/lang/translation/jvm/loop.jvm.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/new-luxc/source/luxc/lang/translation/jvm/loop.jvm.lux b/new-luxc/source/luxc/lang/translation/jvm/loop.jvm.lux
index 2e585fb11..fab4a7efe 100644
--- a/new-luxc/source/luxc/lang/translation/jvm/loop.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/jvm/loop.jvm.lux
@@ -45,13 +45,13 @@
## and stores separately, then by the time Y is evaluated, it
## will refer to the new value of X, instead of the old value, as
## must be the case.
- valuesI+ (monad.map @ (function [[register argS]]
+ valuesI+ (monad.map @ (function (_ [register argS])
(: (Meta $.Inst)
(if (constant? register argS)
(wrap id)
(translate argS))))
pairs)
- #let [storesI+ (list/map (function [[register argS]]
+ #let [storesI+ (list/map (function (_ [register argS])
(: $.Inst
(if (constant? register argS)
id
@@ -71,7 +71,7 @@
bodyI (hostL.with-anchor [@begin offset]
(translate bodyS))
#let [initializationI (|> (list.enumerate initsI+)
- (list/map (function [[register initI]]
+ (list/map (function (_ [register initI])
(|>> initI
($i.ASTORE (n/+ offset register)))))
$i.fuse)]]