aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux
diff options
context:
space:
mode:
authorEduardo Julian2018-06-15 00:11:33 -0400
committerEduardo Julian2018-06-15 00:11:33 -0400
commitbcd3d9ee8f6797f758a2abea98d5cb6a74cc7df0 (patch)
treeb122b9ecf2d5333ba97cffbadfeee00eba2e1cf8 /new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux
parent0190e084c6f44be32ea2bc5a89ef55b52bdc789b (diff)
- WIP: Adjustments to new-luxc based on recent changes to stdlib.
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))