diff options
author | Eduardo Julian | 2019-06-20 23:14:40 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-06-20 23:14:40 -0400 |
commit | fbc9f6f9186254263255f03a9378216adfbeaa0e (patch) | |
tree | 4067d98cfb15bb182d8d8d5d18220a936535fd04 /stdlib/source/lux/target/jvm/attribute/code/exception.lux | |
parent | 29d99720a45bc953ae3c5c77d5a10366353cdd05 (diff) |
Re-structured encoding-related modules a bit.
Diffstat (limited to 'stdlib/source/lux/target/jvm/attribute/code/exception.lux')
-rw-r--r-- | stdlib/source/lux/target/jvm/attribute/code/exception.lux | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/stdlib/source/lux/target/jvm/attribute/code/exception.lux b/stdlib/source/lux/target/jvm/attribute/code/exception.lux index 6ec0a1773..c1f4bf581 100644 --- a/stdlib/source/lux/target/jvm/attribute/code/exception.lux +++ b/stdlib/source/lux/target/jvm/attribute/code/exception.lux @@ -9,8 +9,9 @@ ["#." label (#+ Label)] ["//#" /// #_ [constant (#+ Class)] - ["#." encoding (#+ U2)] - ["#." index (#+ Index)]]]) + ["#." index (#+ Index)] + [encoding + ["#." unsigned (#+ U2)]]]]) (type: #export Exception {#start-pc Label @@ -32,13 +33,13 @@ Nat ($_ n/+ ## u2 start_pc; - ////encoding.u2-bytes + ////unsigned.u2-bytes ## u2 end_pc; - ////encoding.u2-bytes + ////unsigned.u2-bytes ## u2 handler_pc; - ////encoding.u2-bytes + ////unsigned.u2-bytes ## u2 catch_type; - ////encoding.u2-bytes + ////unsigned.u2-bytes )) (def: #export format |