aboutsummaryrefslogtreecommitdiff
path: root/src/lux/host.clj
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lux/host.clj8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lux/host.clj b/src/lux/host.clj
index 3f1ffb25a..8ffe77b96 100644
--- a/src/lux/host.clj
+++ b/src/lux/host.clj
@@ -29,7 +29,7 @@
(.getSimpleName class)))]
(if (.equals "void" base)
(return &type/Unit)
- (return (&/V "lux;DataT" (str (reduce str "" (repeat (int (/ (count arr-level) 2)) "["))
+ (return (&/V &/$DataT (str (reduce str "" (repeat (int (/ (count arr-level) 2)) "["))
base)))
)))
@@ -69,13 +69,13 @@
(defn ->java-sig [^objects type]
(|case type
- ("lux;DataT" ?name)
+ (&/$DataT ?name)
(->type-signature ?name)
- ("lux;LambdaT" _ _)
+ (&/$LambdaT _ _)
(->type-signature function-class)
- ("lux;TupleT" (&/$Nil))
+ (&/$TupleT (&/$Nil))
"V"
))