aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux b/new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux
index 7cdc82064..7267494d5 100644
--- a/new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux
@@ -28,17 +28,17 @@
(|> input (bit.and full-32) cap-32)
(n/> half-32 input)
- (|> post-32 (n/- input) nat-to-int (i/* -1))
+ (|> post-32 (n/- input) .int (i/* -1))
## else
- (nat-to-int input)))
+ (.int input)))
(def: high-32 (bit.logical-right-shift +32))
(def: low-32 (|>> (bit.and (hex "+FFFFFFFF"))))
(def: #export (int value)
(-> Int Expression)
- (let [value (int-to-nat value)
+ (let [value (.nat value)
high (|> value ..high-32 cap-32)
low (|> value ..low-32 cap-32)]
(r.named-list (list [//.int-high-field (r.int high)]
@@ -58,7 +58,7 @@
(def: #export (variant tag last? value)
(-> Nat Bool Expression Expression)
- (variant' (r.int (nat-to-int tag))
+ (variant' (r.int (.int tag))
(flag last?)
value))