aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/macro.lux
diff options
context:
space:
mode:
authorEduardo Julian2018-07-03 20:35:42 -0400
committerEduardo Julian2018-07-03 20:35:42 -0400
commit371a407a49ddf0f2fe1d977018fcd0a009c86043 (patch)
tree322daf75a391bfc49026867250e10c424c4ec978 /new-luxc/source/luxc/lang/macro.lux
parentc75e8aa8bc84af3b598292f3261354384b3cc80f (diff)
- Re-named "import" to "import:".
Diffstat (limited to 'new-luxc/source/luxc/lang/macro.lux')
-rw-r--r--new-luxc/source/luxc/lang/macro.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/new-luxc/source/luxc/lang/macro.lux b/new-luxc/source/luxc/lang/macro.lux
index 4e22047b2..17ed2436b 100644
--- a/new-luxc/source/luxc/lang/macro.lux
+++ b/new-luxc/source/luxc/lang/macro.lux
@@ -7,11 +7,11 @@
(luxc (lang [".L" host]
(translation (jvm [".T" common])))))
-(for {"JVM" (as-is (host.import java/lang/reflect/Method
+(for {"JVM" (as-is (host.import: java/lang/reflect/Method
(invoke [Object (Array Object)] #try Object))
- (host.import (java/lang/Class c)
+ (host.import: (java/lang/Class c)
(getMethod [String (Array (Class Object))] #try Method))
- (host.import java/lang/Object)
+ (host.import: java/lang/Object)
(def: _object-class (Class Object) (host.class-for Object))
(def: _apply-args
(Array (Class Object))