aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/jvm/type/descriptor.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/target/jvm/type/descriptor.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/library/lux/target/jvm/type/descriptor.lux b/stdlib/source/library/lux/target/jvm/type/descriptor.lux
index 677c7b801..6dbdd800c 100644
--- a/stdlib/source/library/lux/target/jvm/type/descriptor.lux
+++ b/stdlib/source/library/lux/target/jvm/type/descriptor.lux
@@ -6,10 +6,10 @@
[control
["[0]" maybe]]
[data
- ["[0]" text ("[1]\[0]" equivalence)
+ ["[0]" text ("[1]#[0]" equivalence)
["%" format {"+" [format]}]]
[collection
- ["[0]" list ("[1]\[0]" functor)]]]
+ ["[0]" list ("[1]#[0]" functor)]]]
[math
[number
["n" nat]]]
@@ -95,7 +95,7 @@
(Descriptor Method))
(:abstraction
(format (|> inputs
- (list\each ..descriptor)
+ (list#each ..descriptor)
text.together
(text.enclosed ["(" ")"]))
(:representation output))))
@@ -104,7 +104,7 @@
(All (_ category) (Equivalence (Descriptor category)))
(def: (= parameter subject)
- (text\= (:representation parameter) (:representation subject))))
+ (text#= (:representation parameter) (:representation subject))))
(def: .public class_name
(-> (Descriptor Object) Internal)
@@ -119,6 +119,6 @@
(|> (text.size repr)
(n.- prefix_size)
(n.- suffix_size)))
- (\ maybe.monad each ///name.internal)
+ (# maybe.monad each ///name.internal)
maybe.trusted))))))
)