diff options
author | Eduardo Julian | 2019-10-16 02:19:52 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-10-16 02:19:52 -0400 |
commit | 3028cc4f45d2d7d66456467de506341800df14d8 (patch) | |
tree | 184a517a4b0634fd50d834b4b16753fd11c691a2 /new-luxc/source/luxc/lang/translation/jvm/extension | |
parent | 688870c71829e1bee89c9f827cc2032507cc507b (diff) |
Now allowing types for methods.
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/jvm/extension')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/jvm/extension/host.lux | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/new-luxc/source/luxc/lang/translation/jvm/extension/host.lux b/new-luxc/source/luxc/lang/translation/jvm/extension/host.lux index ea7ba6d33..7b03bc451 100644 --- a/new-luxc/source/luxc/lang/translation/jvm/extension/host.lux +++ b/new-luxc/source/luxc/lang/translation/jvm/extension/host.lux @@ -24,8 +24,7 @@ ["." category (#+ Void Value Return Primitive Object Class Array Var Parameter Method)] ["." box] ["." reflection] - ["." descriptor (#+ Descriptor)] - ["." signature (#+ Signature)] + ["." signature] ["." parser]]]] [tool [compiler @@ -881,7 +880,7 @@ (def: $Object (type.class "java.lang.Object" (list))) (def: (anonymous-init-method env) - (-> Environment [(Signature Method) (Descriptor Method)]) + (-> Environment (Type Method)) (type.method [(list.repeat (list.size env) $Object) type.void (list)])) |