aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/target/jvm/descriptor.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/target/jvm/descriptor.lux11
1 files changed, 6 insertions, 5 deletions
diff --git a/stdlib/source/lux/target/jvm/descriptor.lux b/stdlib/source/lux/target/jvm/descriptor.lux
index c0cb20a61..1ca625bd6 100644
--- a/stdlib/source/lux/target/jvm/descriptor.lux
+++ b/stdlib/source/lux/target/jvm/descriptor.lux
@@ -4,14 +4,14 @@
["." text
["%" format (#+ format)]]
[collection
- ["." list ("#;." functor)]]]
+ ["." list ("#@." functor)]]]
[macro
["." template]]
[type
abstract]]
["." // #_
[encoding
- ["#." name (#+ Internal)]]])
+ ["#." name (#+ External)]]])
(abstract: #export Void' {} Any)
@@ -57,8 +57,9 @@
)
(def: #export object
- (-> Internal (Descriptor Object))
- (|>> //name.read
+ (-> External (Descriptor Object))
+ (|>> //name.internal
+ //name.read
(text.enclose ["L" ";"])
:abstraction))
@@ -75,7 +76,7 @@
(Descriptor Method))
(:abstraction
(format (|> inputs
- (list;map (|>> :representation))
+ (list@map (|>> :representation))
(text.join-with "")
(text.enclose ["(" ")"]))
(:representation output))))