aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/luxc/lang/host/jvm/def.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-12 00:07:08 -0400
committerEduardo Julian2021-09-12 00:07:08 -0400
commitdda05bca0956af5e5b3875c4cc36e61aa04772e4 (patch)
tree0f8b27697d58ab5c8e41aba7c7c9f769d3800767 /lux-jvm/source/luxc/lang/host/jvm/def.lux
parentd48270f43c404ba19ca04da2553455ecaaf2caba (diff)
Made the "#" character great again!
Diffstat (limited to 'lux-jvm/source/luxc/lang/host/jvm/def.lux')
-rw-r--r--lux-jvm/source/luxc/lang/host/jvm/def.lux48
1 files changed, 24 insertions, 24 deletions
diff --git a/lux-jvm/source/luxc/lang/host/jvm/def.lux b/lux-jvm/source/luxc/lang/host/jvm/def.lux
index ecafc00d2..4aa88ff9a 100644
--- a/lux-jvm/source/luxc/lang/host/jvm/def.lux
+++ b/lux-jvm/source/luxc/lang/host/jvm/def.lux
@@ -90,43 +90,43 @@
(def: (version_flag version)
(-> //.Version Int)
(case version
- #//.V1_1 (org/objectweb/asm/Opcodes::V1_1)
- #//.V1_2 (org/objectweb/asm/Opcodes::V1_2)
- #//.V1_3 (org/objectweb/asm/Opcodes::V1_3)
- #//.V1_4 (org/objectweb/asm/Opcodes::V1_4)
- #//.V1_5 (org/objectweb/asm/Opcodes::V1_5)
- #//.V1_6 (org/objectweb/asm/Opcodes::V1_6)
- #//.V1_7 (org/objectweb/asm/Opcodes::V1_7)
- #//.V1_8 (org/objectweb/asm/Opcodes::V1_8)))
+ {//.#V1_1} (org/objectweb/asm/Opcodes::V1_1)
+ {//.#V1_2} (org/objectweb/asm/Opcodes::V1_2)
+ {//.#V1_3} (org/objectweb/asm/Opcodes::V1_3)
+ {//.#V1_4} (org/objectweb/asm/Opcodes::V1_4)
+ {//.#V1_5} (org/objectweb/asm/Opcodes::V1_5)
+ {//.#V1_6} (org/objectweb/asm/Opcodes::V1_6)
+ {//.#V1_7} (org/objectweb/asm/Opcodes::V1_7)
+ {//.#V1_8} (org/objectweb/asm/Opcodes::V1_8)))
(def: (visibility_flag visibility)
(-> //.Visibility Int)
(case visibility
- #//.Public (org/objectweb/asm/Opcodes::ACC_PUBLIC)
- #//.Protected (org/objectweb/asm/Opcodes::ACC_PROTECTED)
- #//.Private (org/objectweb/asm/Opcodes::ACC_PRIVATE)
- #//.Default +0))
+ {//.#Public} (org/objectweb/asm/Opcodes::ACC_PUBLIC)
+ {//.#Protected} (org/objectweb/asm/Opcodes::ACC_PROTECTED)
+ {//.#Private} (org/objectweb/asm/Opcodes::ACC_PRIVATE)
+ {//.#Default} +0))
(def: (class_flags config)
(-> //.Class_Config Int)
($_ i.+
- (if (value@ #//.finalC config) (org/objectweb/asm/Opcodes::ACC_FINAL) +0)))
+ (if (value@ //.#finalC config) (org/objectweb/asm/Opcodes::ACC_FINAL) +0)))
(def: (method_flags config)
(-> //.Method_Config Int)
($_ i.+
- (if (value@ #//.staticM config) (org/objectweb/asm/Opcodes::ACC_STATIC) +0)
- (if (value@ #//.finalM config) (org/objectweb/asm/Opcodes::ACC_FINAL) +0)
- (if (value@ #//.synchronizedM config) (org/objectweb/asm/Opcodes::ACC_SYNCHRONIZED) +0)
- (if (value@ #//.strictM config) (org/objectweb/asm/Opcodes::ACC_STRICT) +0)))
+ (if (value@ //.#staticM config) (org/objectweb/asm/Opcodes::ACC_STATIC) +0)
+ (if (value@ //.#finalM config) (org/objectweb/asm/Opcodes::ACC_FINAL) +0)
+ (if (value@ //.#synchronizedM config) (org/objectweb/asm/Opcodes::ACC_SYNCHRONIZED) +0)
+ (if (value@ //.#strictM config) (org/objectweb/asm/Opcodes::ACC_STRICT) +0)))
(def: (field_flags config)
(-> //.Field_Config Int)
($_ i.+
- (if (value@ #//.staticF config) (org/objectweb/asm/Opcodes::ACC_STATIC) +0)
- (if (value@ #//.finalF config) (org/objectweb/asm/Opcodes::ACC_FINAL) +0)
- (if (value@ #//.transientF config) (org/objectweb/asm/Opcodes::ACC_TRANSIENT) +0)
- (if (value@ #//.volatileF config) (org/objectweb/asm/Opcodes::ACC_VOLATILE) +0)))
+ (if (value@ //.#staticF config) (org/objectweb/asm/Opcodes::ACC_STATIC) +0)
+ (if (value@ //.#finalF config) (org/objectweb/asm/Opcodes::ACC_FINAL) +0)
+ (if (value@ //.#transientF config) (org/objectweb/asm/Opcodes::ACC_TRANSIENT) +0)
+ (if (value@ //.#volatileF config) (org/objectweb/asm/Opcodes::ACC_VOLATILE) +0)))
(def: param_signature
(-> (Type Class) Text)
@@ -293,11 +293,11 @@
(def: .public (fuse defs)
(-> (List //.Def) //.Def)
(case defs
- #.End
+ {.#End}
function.identity
- {#.Item singleton #.End}
+ {.#Item singleton {.#End}}
singleton
- {#.Item head tail}
+ {.#Item head tail}
(function.composite (fuse tail) head)))