diff options
Diffstat (limited to 'lux-ruby')
-rw-r--r-- | lux-ruby/source/program.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lux-ruby/source/program.lux b/lux-ruby/source/program.lux index b145ca59d..932e48f80 100644 --- a/lux-ruby/source/program.lux +++ b/lux-ruby/source/program.lux @@ -286,10 +286,10 @@ Translator (`` (<| (if (ffi.null? host_object) (exception.except ..nil_has_no_lux_representation [])) - (~~ (with_template [<class> <post_processing>] + (,, (with_template [<class> <post_processing>] [(case (ffi.as <class> host_object) {.#Some typed_object} - (`` (|> typed_object (~~ (template.spliced <post_processing>)))) + (`` (|> typed_object (,, (template.spliced <post_processing>)))) _)] @@ -326,7 +326,7 @@ (-> (Array java/lang/Object) org/jruby/runtime/builtin/IRubyObject) (-> java/lang/Object org/jruby/runtime/builtin/IRubyObject)) (function (again value) - (`` (<| (~~ (with_template [<when> <then>] + (`` (<| (,, (with_template [<when> <then>] [(case (ffi.as <when> value) {.#Some value} (|> value |