aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/luxc/lang/translation/jvm/extension/host.lux
diff options
context:
space:
mode:
Diffstat (limited to 'lux-jvm/source/luxc/lang/translation/jvm/extension/host.lux')
-rw-r--r--lux-jvm/source/luxc/lang/translation/jvm/extension/host.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/lux-jvm/source/luxc/lang/translation/jvm/extension/host.lux b/lux-jvm/source/luxc/lang/translation/jvm/extension/host.lux
index 6fc52a0ab..b25d37fd7 100644
--- a/lux-jvm/source/luxc/lang/translation/jvm/extension/host.lux
+++ b/lux-jvm/source/luxc/lang/translation/jvm/extension/host.lux
@@ -120,7 +120,7 @@
(template [<conversion> <name>]
[(def: (<name> inputI)
(Unary Inst)
- (if (is? _.NOP <conversion>)
+ (if (same? _.NOP <conversion>)
inputI
(|>> inputI
<conversion>)))]
@@ -628,7 +628,7 @@
(function (_ extension_name generate archive [class field unboxed])
(do phase.monad
[]
- (case (dictionary.get unboxed ..primitives)
+ (case (dictionary.value unboxed ..primitives)
(#.Some primitive)
(in (_.GETSTATIC (type.class class (list)) field primitive))
@@ -643,7 +643,7 @@
(do phase.monad
[valueI (generate archive valueS)
.let [$class (type.class class (list))]]
- (case (dictionary.get unboxed ..primitives)
+ (case (dictionary.value unboxed ..primitives)
(#.Some primitive)
(in (|>> valueI
(_.PUTSTATIC $class field primitive)
@@ -663,7 +663,7 @@
(do phase.monad
[objectI (generate archive objectS)
.let [$class (type.class class (list))
- getI (case (dictionary.get unboxed ..primitives)
+ getI (case (dictionary.value unboxed ..primitives)
(#.Some primitive)
(_.GETFIELD $class field primitive)
@@ -682,7 +682,7 @@
[valueI (generate archive valueS)
objectI (generate archive objectS)
.let [$class (type.class class (list))
- putI (case (dictionary.get unboxed ..primitives)
+ putI (case (dictionary.value unboxed ..primitives)
(#.Some primitive)
(_.PUTFIELD $class field primitive)
@@ -917,7 +917,7 @@
(^ (synthesis.variable var))
(|> mapping
- (dictionary.get body)
+ (dictionary.value body)
(maybe.else var)
synthesis.variable)
@@ -944,7 +944,7 @@
(case captured
(^ (synthesis.variable var))
(|> mapping
- (dictionary.get captured)
+ (dictionary.value captured)
(maybe.else var)
synthesis.variable)
@@ -1114,7 +1114,7 @@
(list\map (function (_ [foreign_id capture])
[(synthesis.variable/foreign foreign_id)
(|> global_mapping
- (dictionary.get capture)
+ (dictionary.value capture)
maybe.assume)]))
(dictionary.of_list synthesis.hash))]
[ownerT name