diff options
author | Eduardo Julian | 2021-09-14 16:41:18 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-09-14 16:41:18 -0400 |
commit | ccfa75463cd7c702f41c3dae5cbdaeade7ba5c31 (patch) | |
tree | c47937a8f62a25ef945a876b3af76c5fca989db9 /lux-jvm/source/luxc/lang/host/jvm | |
parent | ea15b844b51ff60f9785c6791507f813729f85c3 (diff) |
Re-named "recur" to "again".
Diffstat (limited to '')
-rw-r--r-- | lux-jvm/source/luxc/lang/host/jvm/inst.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lux-jvm/source/luxc/lang/host/jvm/inst.lux b/lux-jvm/source/luxc/lang/host/jvm/inst.lux index fbb6da059..1384d1a73 100644 --- a/lux-jvm/source/luxc/lang/host/jvm/inst.lux +++ b/lux-jvm/source/luxc/lang/host/jvm/inst.lux @@ -379,7 +379,7 @@ (exec (ffi.write! idx (ffi.long_to_int key) keys_array) (ffi.write! idx label labels_array) - (recur (++ idx)))) + (again (++ idx)))) []))] (do_to visitor (org/objectweb/asm/MethodVisitor::visitLookupSwitchInsn default keys_array labels_array))))) @@ -394,7 +394,7 @@ (exec (ffi.write! idx (maybe.trusted (list.item idx labels)) labels_array) - (recur (++ idx))) + (again (++ idx))) []))] (do_to visitor (org/objectweb/asm/MethodVisitor::visitTableSwitchInsn min max default labels_array))))) |