aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/luxc/lang/host/jvm/def.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-07 22:50:21 -0400
committerEduardo Julian2021-09-07 22:50:21 -0400
commit35c0807799717cd720ab28b35851c1a01a67445d (patch)
treec6237b79fb262d24c8a46ee3ecb714df3e9874d8 /lux-jvm/source/luxc/lang/host/jvm/def.lux
parentb55cefcb258f11eeee32c1478faefd1bd09ec871 (diff)
De-taggification | part 4
Diffstat (limited to 'lux-jvm/source/luxc/lang/host/jvm/def.lux')
-rw-r--r--lux-jvm/source/luxc/lang/host/jvm/def.lux30
1 files changed, 15 insertions, 15 deletions
diff --git a/lux-jvm/source/luxc/lang/host/jvm/def.lux b/lux-jvm/source/luxc/lang/host/jvm/def.lux
index 3260e954c..36aed2d61 100644
--- a/lux-jvm/source/luxc/lang/host/jvm/def.lux
+++ b/lux-jvm/source/luxc/lang/host/jvm/def.lux
@@ -1,28 +1,28 @@
(.module:
[library
[lux {"-" [Type]}
- ["." ffi {"+" [import: do_to]}]
+ ["[0]" ffi {"+" [import: do_to]}]
[control
- ["." function]]
+ ["[0]" function]]
[data
- ["." product]
- ["." text
+ ["[0]" product]
+ ["[0]" text
["%" format {"+" [format]}]]
[collection
- ["." array {"+" [Array]}]
- ["." list ("#@." functor)]]]
+ ["[0]" array {"+" [Array]}]
+ ["[0]" list ("[1]@[0]" functor)]]]
[math
[number
["i" int]]]
[target
[jvm
[encoding
- ["." name]]
- ["." type {"+" [Type Constraint]}
+ ["[0]" name]]
+ ["[0]" type {"+" [Type Constraint]}
[category {"+" [Class Value Method]}]
- ["." signature]
- ["." descriptor]]]]]]
- ["." //])
+ ["[0]" signature]
+ ["[0]" descriptor]]]]]]
+ ["[0]" //])
(def: signature (|>> type.signature signature.signature))
(def: descriptor (|>> type.descriptor descriptor.descriptor))
@@ -32,7 +32,7 @@
(import: java/lang/String)
(import: org/objectweb/asm/Opcodes
- ["#::."
+ ["[1]::[0]"
("static" ACC_PUBLIC int)
("static" ACC_PROTECTED int)
("static" ACC_PRIVATE int)
@@ -59,17 +59,17 @@
("static" V1_8 int)])
(import: org/objectweb/asm/FieldVisitor
- ["#::."
+ ["[1]::[0]"
(visitEnd [] void)])
(import: org/objectweb/asm/MethodVisitor
- ["#::."
+ ["[1]::[0]"
(visitCode [] void)
(visitMaxs [int int] void)
(visitEnd [] void)])
(import: org/objectweb/asm/ClassWriter
- ["#::."
+ ["[1]::[0]"
("static" COMPUTE_MAXS int)
("static" COMPUTE_FRAMES int)
(new [int])