aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/host.jvm.lux
diff options
context:
space:
mode:
authorEduardo Julian2017-09-08 19:19:22 -0400
committerEduardo Julian2017-09-08 19:19:22 -0400
commit06713336cdfd09db3eba26eda2c04db05bcd71e4 (patch)
treef775c46fd273c523e633e20386c332b925fe39e3 /new-luxc/source/luxc/host.jvm.lux
parent2697c570707ffa379225b6112b09fdec654eb0c8 (diff)
- Re-named "jvm-import" to "import".
Diffstat (limited to 'new-luxc/source/luxc/host.jvm.lux')
-rw-r--r--new-luxc/source/luxc/host.jvm.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/new-luxc/source/luxc/host.jvm.lux b/new-luxc/source/luxc/host.jvm.lux
index 00957f3d4..e22ab4fd1 100644
--- a/new-luxc/source/luxc/host.jvm.lux
+++ b/new-luxc/source/luxc/host.jvm.lux
@@ -8,28 +8,28 @@
(coll ["d" dict]
[array #+ Array]))
[macro #+ Monad<Lux>]
- [host #+ jvm-import do-to object]
+ [host #+ do-to object]
[io])
(luxc ["&" base]
(generator ["&&;" common])
))
-(jvm-import java.lang.reflect.AccessibleObject
+(host;import java.lang.reflect.AccessibleObject
(setAccessible [boolean] void))
-(jvm-import java.lang.reflect.Method
+(host;import java.lang.reflect.Method
(invoke [Object (Array Object)] #try Object))
-(jvm-import (java.lang.Class a)
+(host;import (java.lang.Class a)
(getDeclaredMethod [String (Array (Class Object))] #try Method))
-(jvm-import java.lang.Object
+(host;import java.lang.Object
(getClass [] (Class Object)))
-(jvm-import java.lang.Integer
+(host;import java.lang.Integer
(#static TYPE (Class Integer)))
-(jvm-import java.lang.ClassLoader)
+(host;import java.lang.ClassLoader)
(def: ClassLoader::defineClass
Method