aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/jvm/reference.jvm.lux
diff options
context:
space:
mode:
authorEduardo Julian2019-02-24 12:26:17 -0400
committerEduardo Julian2019-02-24 12:26:17 -0400
commita72e34d30eaf3557f9b76ced9605a95759ce8eca (patch)
tree5fd88f66ac3b2b0abb5561521f806afb93c5134e /new-luxc/source/luxc/lang/translation/jvm/reference.jvm.lux
parent950ac7c3311ad8ff4499164a30610fca2e57d5c9 (diff)
Got new-luxc to compile/build again.
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/jvm/reference.jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/jvm/reference.jvm.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/new-luxc/source/luxc/lang/translation/jvm/reference.jvm.lux b/new-luxc/source/luxc/lang/translation/jvm/reference.jvm.lux
index 175338ba4..fe4a58b36 100644
--- a/new-luxc/source/luxc/lang/translation/jvm/reference.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/jvm/reference.jvm.lux
@@ -5,11 +5,11 @@
[data
[text
format]]
- [platform
+ [tool
[compiler
["." name]
["." reference (#+ Register Variable)]
- ["." phase ("operation/." Monad<Operation>)
+ ["." phase ("operation/." monad)
["." translation]]]]]
[luxc
[lang
@@ -30,7 +30,7 @@
(def: (foreign variable)
(-> Register (Operation Inst))
- (do phase.Monad<Operation>
+ (do phase.monad
[function-class translation.context]
(wrap (|>> (_.ALOAD 0)
(_.GETFIELD function-class
@@ -52,6 +52,6 @@
(def: #export (constant name)
(-> Name (Operation Inst))
- (do phase.Monad<Operation>
+ (do phase.monad
[bytecode-name (translation.remember name)]
(operation/wrap (_.GETSTATIC bytecode-name //.value-field //.$Object))))