aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/host/jvm/field.lux
diff options
context:
space:
mode:
authorEduardo Julian2019-03-14 21:34:51 -0400
committerEduardo Julian2019-03-14 21:34:51 -0400
commit9449d89f611ba3192373fdeb6848d02707ff1292 (patch)
treec84efab622a9ee54ba2f0dc46ead3082289339f7 /stdlib/source/lux/host/jvm/field.lux
parenteb37e9b2a851cab1aef7de293ec345d7925d639a (diff)
Now allowing the alias of a module to refer to the alias of an ancestor.
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/host/jvm/field.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/lux/host/jvm/field.lux b/stdlib/source/lux/host/jvm/field.lux
index 69e0400ea..f40800790 100644
--- a/stdlib/source/lux/host/jvm/field.lux
+++ b/stdlib/source/lux/host/jvm/field.lux
@@ -15,14 +15,14 @@
["." row (#+ Row)]]]
[type
[abstract (#+)]]]
- [//
+ ["." // #_
[encoding (#+)]
[modifier (#+ modifiers:)]
- ["//." constant (#+ UTF8)
- ["//." pool (#+ Pool)]]
- ["//." index (#+ Index)]
- ["//." attribute (#+ Attribute)]
- ["//." descriptor (#+ Descriptor Value)]])
+ ["#." constant (#+ UTF8)
+ ["#/." pool (#+ Pool)]]
+ ["#." index (#+ Index)]
+ ["#." attribute (#+ Attribute)]
+ ["#." descriptor (#+ Descriptor Value)]])
(modifiers:
["0001" public]
@@ -62,8 +62,8 @@
(-> Modifier UTF8 (Descriptor (Value Any)) (Row Attribute)
(State Pool Field))
(do state.monad
- [@name (//pool.utf8 name)
- @descriptor (//pool.descriptor descriptor)]
+ [@name (//constant/pool.utf8 name)
+ @descriptor (//constant/pool.descriptor descriptor)]
(wrap {#modifier modifier
#name @name
#descriptor @descriptor