aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm
diff options
context:
space:
mode:
Diffstat (limited to 'lux-jvm')
-rw-r--r--lux-jvm/source/luxc/lang/translation/jvm/extension/common.lux15
1 files changed, 1 insertions, 14 deletions
diff --git a/lux-jvm/source/luxc/lang/translation/jvm/extension/common.lux b/lux-jvm/source/luxc/lang/translation/jvm/extension/common.lux
index 39934dbb8..c9eed9489 100644
--- a/lux-jvm/source/luxc/lang/translation/jvm/extension/common.lux
+++ b/lux-jvm/source/luxc/lang/translation/jvm/extension/common.lux
@@ -304,17 +304,6 @@
(_.INVOKESPECIAL $Error "<init>" string_method)
_.ATHROW)))
-(def: (io::exit codeI)
- (Unary Inst)
- (|>> codeI jvm_intI
- (_.INVOKESTATIC $System "exit" (type.method [(list type.int) type.void (list)]))
- _.NULL))
-
-(def: (io::current_time _)
- (Nullary Inst)
- (|>> (_.INVOKESTATIC $System "currentTimeMillis" (type.method [(list) type.long (list)]))
- (_.wrap type.long)))
-
(def: bundle::lux
Bundle
(|> (: Bundle bundle.empty)
@@ -376,9 +365,7 @@
(<| (bundle.prefix "io")
(|> (: Bundle bundle.empty)
(bundle.install "log" (unary io::log))
- (bundle.install "error" (unary io::error))
- (bundle.install "exit" (unary io::exit))
- (bundle.install "current-time" (nullary io::current_time)))))
+ (bundle.install "error" (unary io::error)))))
(def: #export bundle
Bundle