aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/jvm/bytecode/instruction.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/target/jvm/bytecode/instruction.lux')
-rw-r--r--stdlib/source/library/lux/target/jvm/bytecode/instruction.lux32
1 files changed, 16 insertions, 16 deletions
diff --git a/stdlib/source/library/lux/target/jvm/bytecode/instruction.lux b/stdlib/source/library/lux/target/jvm/bytecode/instruction.lux
index bba0c67da..effbdda4a 100644
--- a/stdlib/source/library/lux/target/jvm/bytecode/instruction.lux
+++ b/stdlib/source/library/lux/target/jvm/bytecode/instruction.lux
@@ -1,40 +1,40 @@
(.module:
[library
- [lux #*
+ [lux "*"
[abstract
- [monad (#+ do)]
- [monoid (#+ Monoid)]]
+ [monad {"+" [do]}]
+ [monoid {"+" [Monoid]}]]
[control
["." function]
["." try]]
[data
["." product]
["." binary]
- ["." format #_
- ["#" binary (#+ Mutation Specification)]]
+ ["." format "_"
+ ["#" binary {"+" [Mutation Specification]}]]
[collection
["." list]]]
[macro
["." template]]
[math
- [number (#+ hex)
+ [number {"+" [hex]}
["n" nat]]]
[type
abstract]]]
- ["." // #_
- ["#." address (#+ Address)]
- ["#." jump (#+ Jump Big_Jump)]
+ ["." // "_"
+ ["#." address {"+" [Address]}]
+ ["#." jump {"+" [Jump Big_Jump]}]
[environment
[limit
- [registry (#+ Register)]]]
- ["/#" // #_
- ["#." index (#+ Index)]
- ["#." constant (#+ Class Reference)]
+ [registry {"+" [Register]}]]]
+ ["/#" // "_"
+ ["#." index {"+" [Index]}]
+ ["#." constant {"+" [Class Reference]}]
[encoding
- ["#." unsigned (#+ U1 U2 U4)]
- ["#." signed (#+ S1 S2 S4)]]
+ ["#." unsigned {"+" [U1 U2 U4]}]
+ ["#." signed {"+" [S1 S2 S4]}]]
[type
- [category (#+ Value Method)]]]])
+ [category {"+" [Value Method]}]]]])
(type: .public Size
U2)