aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/luxc/lang/host/jvm/inst.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-04 12:49:52 -0400
committerEduardo Julian2021-09-04 12:49:52 -0400
commitfc8bebd3b3c5f050ea92e72eecbd9f6df09f28db (patch)
tree24858adac0e67228620b7e9166e3b7335be9fd5a /lux-jvm/source/luxc/lang/host/jvm/inst.lux
parent891b1cfc82322f8017f0a4f6b707d6fe52024545 (diff)
De-taggification | part 2
Diffstat (limited to '')
-rw-r--r--lux-jvm/source/luxc/lang/host/jvm/inst.lux18
1 files changed, 9 insertions, 9 deletions
diff --git a/lux-jvm/source/luxc/lang/host/jvm/inst.lux b/lux-jvm/source/luxc/lang/host/jvm/inst.lux
index ba381d5d2..9a622da03 100644
--- a/lux-jvm/source/luxc/lang/host/jvm/inst.lux
+++ b/lux-jvm/source/luxc/lang/host/jvm/inst.lux
@@ -1,9 +1,9 @@
(.module:
[library
- [lux (#- Type int char try)
- ["." ffi (#+ import: do_to)]
+ [lux {"-" [Type int char try]}
+ ["." ffi {"+" [import: do_to]}]
[abstract
- [monad (#+ do)]]
+ [monad {"+" [do]}]]
[control
["." function]
["." maybe]
@@ -15,7 +15,7 @@
[collection
["." list ("#@." functor)]]]
[macro
- [syntax (#+ syntax:)]
+ [syntax {"+" [syntax:]}]
["." code]
["." template]]
[math
@@ -25,16 +25,16 @@
[target
[jvm
[encoding
- ["." name (#+ External)]]
- ["." type (#+ Type) ("#@." equivalence)
- [category (#+ Void Value Return Method Primitive Object Class Array Var Parameter)]
+ ["." name {"+" [External]}]]
+ ["." type {"+" [Type]} ("#@." equivalence)
+ [category {"+" [Void Value Return Method Primitive Object Class Array Var Parameter]}]
["." box]
["." descriptor]
["." reflection]]]]
[tool
[compiler
- [phase (#+ Operation)]]]]]
- ["." // (#+ Inst)])
+ [phase {"+" [Operation]}]]]]]
+ ["." // {"+" [Inst]}])
(def: class_name (|>> type.descriptor descriptor.class_name name.read))
(def: descriptor (|>> type.descriptor descriptor.descriptor))