aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/jvm.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/new-luxc/source/luxc/lang/translation/jvm.lux b/new-luxc/source/luxc/lang/translation/jvm.lux
index 88e607217..5ffb60482 100644
--- a/new-luxc/source/luxc/lang/translation/jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/jvm.lux
@@ -100,14 +100,14 @@
(|>> valueI
(inst.PUTSTATIC bytecode-name ..value-field ..$Object)
inst.RETURN))))]
- (io.run (do (error.with-error io.monad)
+ (io.run (do (error.with io.monad)
[_ (loader.store eval-class bytecode library)
class (loader.load eval-class loader)]
(:: io.monad wrap (class-value eval-class class))))))
(def: (execute! library loader temp-label [class-name class-bytecode])
(-> Library ClassLoader Text Definition (Error Any))
- (io.run (do (error.with-error io.monad)
+ (io.run (do (error.with io.monad)
[_ (loader.store class-name class-bytecode library)]
(loader.load class-name loader))))