aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/target/jvm/type/signature.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/documentation/lux/target/jvm/type/signature.lux')
-rw-r--r--stdlib/source/documentation/lux/target/jvm/type/signature.lux48
1 files changed, 48 insertions, 0 deletions
diff --git a/stdlib/source/documentation/lux/target/jvm/type/signature.lux b/stdlib/source/documentation/lux/target/jvm/type/signature.lux
new file mode 100644
index 000000000..ff3df3280
--- /dev/null
+++ b/stdlib/source/documentation/lux/target/jvm/type/signature.lux
@@ -0,0 +1,48 @@
+(.using
+ [library
+ [lux {"-" char}
+ ["$" documentation {"+" documentation:}]
+ [data
+ [text {"+" \n}
+ ["%" format {"+" format}]]
+ [collection
+ ["[0]" list]]]]]
+ [\\library
+ ["[0]" /]])
+
+(.def: .public documentation
+ (.List $.Module)
+ ($.module /._
+ ""
+ [($.default /.Signature)
+ ($.default /.signature)
+ ($.default /.void)
+ ($.default /.boolean)
+ ($.default /.byte)
+ ($.default /.short)
+ ($.default /.int)
+ ($.default /.long)
+ ($.default /.float)
+ ($.default /.double)
+ ($.default /.char)
+ ($.default /.array)
+ ($.default /.wildcard)
+ ($.default /.var_prefix)
+ ($.default /.var)
+ ($.default /.var_name)
+ ($.default /.lower_prefix)
+ ($.default /.upper_prefix)
+ ($.default /.lower)
+ ($.default /.upper)
+ ($.default /.parameters_start)
+ ($.default /.parameters_end)
+ ($.default /.class)
+ ($.default /.declaration)
+ ($.default /.as_class)
+ ($.default /.arguments_start)
+ ($.default /.arguments_end)
+ ($.default /.exception_prefix)
+ ($.default /.method)
+ ($.default /.equivalence)
+ ($.default /.hash)]
+ []))