diff options
author | Eduardo Julian | 2018-07-19 21:37:31 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-19 21:37:31 -0400 |
commit | b1315d6dc1e4bed4a3bf35e8c6f67d88c2aa7b55 (patch) | |
tree | 5e0c7d2a316d5bbfee830b5bdee539d0d47c64fb | |
parent | 9740c0a197dc41f816b6ac72d379ed12ed0d4f01 (diff) |
Small fix for Scheme compilation.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/language/compiler/translation/scheme/runtime.jvm.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/language/compiler/translation/scheme/runtime.jvm.lux b/stdlib/source/lux/language/compiler/translation/scheme/runtime.jvm.lux index 8e0d0c270..961a682f2 100644 --- a/stdlib/source/lux/language/compiler/translation/scheme/runtime.jvm.lux +++ b/stdlib/source/lux/language/compiler/translation/scheme/runtime.jvm.lux @@ -21,10 +21,10 @@ [host ["_" scheme (#+ Expression Computation Var)]]]]]) (type: #export Operation - (///.Operation Var Expression)) + (///.Operation Var Expression Expression)) (type: #export Compiler - (///.Compiler Var Expression)) + (///.Compiler Var Expression Expression)) (def: prefix Text "LuxRuntime") |