diff options
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/jvm')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/jvm/runtime.lux | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/new-luxc/source/luxc/lang/translation/jvm/runtime.lux b/new-luxc/source/luxc/lang/translation/jvm/runtime.lux index ce271c4c9..78467022e 100644 --- a/new-luxc/source/luxc/lang/translation/jvm/runtime.lux +++ b/new-luxc/source/luxc/lang/translation/jvm/runtime.lux @@ -95,10 +95,6 @@ noneI _.ARETURN))) -(def: #export string-concatI - Inst - (_.INVOKEVIRTUAL $Text "concat" (type.method [(list $Text) $Text (list)]))) - (def: #export partials-field Text "partials") (def: #export apply-method Text "apply") (def: #export num-apply-variants Nat 8) @@ -121,8 +117,6 @@ store-valueI _.ARETURN))))) -(def: frac-shiftI Inst (_.double (math.pow +32.0 +2.0))) - (def: frac-methods Def (|>> ($d.method #$.Public $.staticM "decode_frac" (type.method [(list $Text) //.$Variant (list)]) @@ -360,6 +354,5 @@ (def: #export translate (Operation Any) (do phase.monad - [runtime-bc translate-runtime - function-bc translate-function] - (wrap []))) + [_ translate-runtime] + translate-function)) |