diff options
author | Eduardo Julian | 2020-05-09 02:12:56 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-05-09 02:12:56 -0400 |
commit | 8d9fd8b34f8716be7fa1059eb9761330d9667753 (patch) | |
tree | aacc3fef52551c6b02f66435dedd5a0e5bfc18bc /new-luxc/source/luxc/lang/translation/jvm.lux | |
parent | 3e524725cfb47cb56466a08ac290ed5a389748be (diff) |
Including runtime machinery in the cache.
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/jvm.lux')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/jvm.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/new-luxc/source/luxc/lang/translation/jvm.lux b/new-luxc/source/luxc/lang/translation/jvm.lux index 12bf96631..59d722233 100644 --- a/new-luxc/source/luxc/lang/translation/jvm.lux +++ b/new-luxc/source/luxc/lang/translation/jvm.lux @@ -175,5 +175,5 @@ (def: #export $Variant (type.array ..$Value)) (def: #export $Tuple (type.array ..$Value)) -(def: #export $Function (type.class "LuxFunction" (list))) -(def: #export $Runtime (type.class "LuxRuntime" (list))) +(def: #export $Runtime (type.class (..class-name [0 0]) (list))) +(def: #export $Function (type.class (..class-name [0 1]) (list))) |