aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/tool/compiler/meta/packager/jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/tool/compiler/meta/packager/jvm.lux')
-rw-r--r--stdlib/source/library/lux/tool/compiler/meta/packager/jvm.lux70
1 files changed, 35 insertions, 35 deletions
diff --git a/stdlib/source/library/lux/tool/compiler/meta/packager/jvm.lux b/stdlib/source/library/lux/tool/compiler/meta/packager/jvm.lux
index 1bd4e94a9..f8bb67b70 100644
--- a/stdlib/source/library/lux/tool/compiler/meta/packager/jvm.lux
+++ b/stdlib/source/library/lux/tool/compiler/meta/packager/jvm.lux
@@ -1,21 +1,21 @@
(.module:
[library
[lux {"-" [Module Definition]}
- ["." ffi {"+" [import: do_to]}]
+ ["[0]" ffi {"+" [import: do_to]}]
[abstract
- ["." monad {"+" [Monad do]}]]
+ ["[0]" monad {"+" [Monad do]}]]
[control
- ["." maybe ("#\." functor)]
- ["." try {"+" [Try]}]]
+ ["[0]" maybe ("[1]\[0]" functor)]
+ ["[0]" try {"+" [Try]}]]
[data
- ["." binary {"+" [Binary]}]
- ["." text
+ ["[0]" binary {"+" [Binary]}]
+ ["[0]" text
["%" format {"+" [format]}]]
[collection
- ["." row]
- ["." list ("#\." functor)]
- ["." dictionary]
- ["." set {"+" [Set]}]]]
+ ["[0]" row]
+ ["[0]" list ("[1]\[0]" functor)]
+ ["[0]" dictionary]
+ ["[0]" set {"+" [Set]}]]]
[math
[number
["n" nat]
@@ -23,21 +23,21 @@
[target
[jvm
[encoding
- ["." name]]]]
+ ["[0]" name]]]]
[world
- ["." file]]]]
+ ["[0]" file]]]]
[program
[compositor
- ["." static {"+" [Static]}]]]
- ["." // {"+" [Packager]}
+ ["[0]" static {"+" [Static]}]]]
+ ["[0]" // {"+" [Packager]}
[//
- ["." archive {"+" [Output]}
- ["." descriptor {"+" [Module]}]
- ["." artifact]]
+ ["[0]" archive {"+" [Output]}
+ ["[0]" descriptor {"+" [Module]}]
+ ["[0]" artifact]]
[cache
- ["." dependency]]
- ["." io "_"
- ["#" archive]]
+ ["[0]" dependency]]
+ ["[0]" io "_"
+ ["[1]" archive]]
[//
[language
["$" lux
@@ -45,73 +45,73 @@
[phase
[generation
[jvm
- ["." runtime {"+" [Definition]}]]]]]]]]])
+ ["[0]" runtime {"+" [Definition]}]]]]]]]]])
(import: java/lang/Object)
(import: java/lang/String)
(import: java/util/jar/Attributes
- ["#::."
+ ["[1]::[0]"
(put [java/lang/Object java/lang/Object] "?" java/lang/Object)])
(import: java/util/jar/Attributes$Name
- ["#::."
+ ["[1]::[0]"
("static" MAIN_CLASS java/util/jar/Attributes$Name)
("static" MANIFEST_VERSION java/util/jar/Attributes$Name)])
(import: java/util/jar/Manifest
- ["#::."
+ ["[1]::[0]"
(new [])
(getMainAttributes [] java/util/jar/Attributes)])
(import: java/io/Flushable
- ["#::."
+ ["[1]::[0]"
(flush [] void)])
(import: java/io/Closeable
- ["#::."
+ ["[1]::[0]"
(close [] void)])
(import: java/io/OutputStream
- ["#::."
+ ["[1]::[0]"
(write [[byte] int int] void)])
(import: java/io/ByteArrayOutputStream
- ["#::."
+ ["[1]::[0]"
(new [int])
(toByteArray [] [byte])])
(import: java/util/zip/ZipEntry
- ["#::."
+ ["[1]::[0]"
(getName [] java/lang/String)
(isDirectory [] boolean)
(getSize [] long)])
(import: java/util/zip/ZipOutputStream
- ["#::."
+ ["[1]::[0]"
(write [[byte] int int] void)
(closeEntry [] void)])
(import: java/util/jar/JarEntry
- ["#::."
+ ["[1]::[0]"
(new [java/lang/String])])
(import: java/util/jar/JarOutputStream
- ["#::."
+ ["[1]::[0]"
(new [java/io/OutputStream java/util/jar/Manifest])
(putNextEntry [java/util/zip/ZipEntry] "try" void)])
(import: java/io/ByteArrayInputStream
- ["#::."
+ ["[1]::[0]"
(new [[byte]])])
(import: java/io/InputStream
- ["#::."
+ ["[1]::[0]"
(read [[byte] int int] int)])
(import: java/util/jar/JarInputStream
- ["#::."
+ ["[1]::[0]"
(new [java/io/InputStream])
(getNextJarEntry [] "try" "?" java/util/jar/JarEntry)])