diff options
author | Eduardo Julian | 2019-06-06 22:44:00 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-06-06 22:44:00 -0400 |
commit | c218bc693aa3703fee666c3ca1c068201c07d2a9 (patch) | |
tree | 5e5290284798eb9a7497eeda66fdd2660011a7dd /new-luxc/source/luxc/lang/translation/jvm | |
parent | b7f62d92c3ed9dcd0d2d48d680798114ad64c9df (diff) |
WIP: Class definition.
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/jvm/procedure/host.lux | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/new-luxc/source/luxc/lang/translation/jvm/procedure/host.lux b/new-luxc/source/luxc/lang/translation/jvm/procedure/host.lux index 4239a89aa..ce5d797b4 100644 --- a/new-luxc/source/luxc/lang/translation/jvm/procedure/host.lux +++ b/new-luxc/source/luxc/lang/translation/jvm/procedure/host.lux @@ -886,7 +886,8 @@ (def: overriden-method-definition (Parser [Environment (/.Overriden-Method Synthesis)]) (<s>.tuple (do <>.monad - [ownerT ..class + [_ (<s>.text! /.overriden-tag) + ownerT ..class name <s>.text strict-fp? <s>.bit annotations (<s>.tuple (<>.some ..annotation)) |