diff options
author | Eduardo Julian | 2018-04-14 13:32:43 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-04-14 13:32:43 -0400 |
commit | 0bba53ceb52502510e0f6ba4c53a951933532a61 (patch) | |
tree | 82bd7fe239dc7996e9542fc9b5fea5768579bd0f /new-luxc/source/luxc/lang/translation/r/procedure | |
parent | 1a3fa23f5c0444f0f8273cbc21875eeabdc321aa (diff) |
- Made everything an expression for R translation.
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/r/procedure.jvm.lux | 2 | ||||
-rw-r--r-- | new-luxc/source/luxc/lang/translation/r/procedure/common.jvm.lux | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/new-luxc/source/luxc/lang/translation/r/procedure.jvm.lux b/new-luxc/source/luxc/lang/translation/r/procedure.jvm.lux index 699c0c000..0cb14d379 100644 --- a/new-luxc/source/luxc/lang/translation/r/procedure.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/r/procedure.jvm.lux @@ -7,7 +7,7 @@ (coll [dict]))) (luxc ["&" lang] (lang ["ls" synthesis] - (host [python #+ Expression Statement]))) + (host [r #+ Expression]))) [//] (/ ["/." common] ["/." host])) diff --git a/new-luxc/source/luxc/lang/translation/r/procedure/common.jvm.lux b/new-luxc/source/luxc/lang/translation/r/procedure/common.jvm.lux index 849093126..1bcd560e9 100644 --- a/new-luxc/source/luxc/lang/translation/r/procedure/common.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/r/procedure/common.jvm.lux @@ -16,7 +16,7 @@ (luxc ["&" lang] (lang ["la" analysis] ["ls" synthesis] - (host [r #+ Expression Statement]))) + (host [r #+ Expression]))) [///] (/// [".T" runtime] [".T" case] |