diff options
author | Eduardo Julian | 2021-07-22 01:16:40 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-07-22 01:16:40 -0400 |
commit | 51a5c28b0f9efd514e3fae7c2634fd5e9bd714e2 (patch) | |
tree | cbd24da4230577ef5bbf66161cb825216d924ba5 /lux-jvm/source/luxc/lang/host/jvm | |
parent | 461a6ce673de9b2c3d77714c4884c2a316fe7e8f (diff) |
New JVM compiler can now compile JVM classes.
Diffstat (limited to '')
-rw-r--r-- | lux-jvm/source/luxc/lang/host/jvm.lux | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lux-jvm/source/luxc/lang/host/jvm.lux b/lux-jvm/source/luxc/lang/host/jvm.lux index de92a3ba5..1c81be667 100644 --- a/lux-jvm/source/luxc/lang/host/jvm.lux +++ b/lux-jvm/source/luxc/lang/host/jvm.lux @@ -61,11 +61,14 @@ #V1_7 #V1_8) -(type: #export ByteCode Binary) +(type: #export ByteCode + Binary) -(type: #export Definition [Text ByteCode]) +(type: #export Definition + [Text ByteCode]) -(type: #export Anchor [Label Register]) +(type: #export Anchor + [Label Register]) (type: #export Host (generation.Host Inst Definition)) |