aboutsummaryrefslogtreecommitdiff
path: root/lux-php/source/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'lux-php/source/program.lux')
-rw-r--r--lux-php/source/program.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/lux-php/source/program.lux b/lux-php/source/program.lux
index 88ac83d11..64cdb5d4b 100644
--- a/lux-php/source/program.lux
+++ b/lux-php/source/program.lux
@@ -170,7 +170,7 @@
[(ffi.interface <name>
(getValue [] java/lang/Object))
- (`` (ffi.import (~~ (template.symbol ["program/" <name>]))
+ (`` (ffi.import (,, (template.symbol ["program/" <name>]))
"[1]::[0]"
(getValue [] java/lang/Object)))]
@@ -246,7 +246,7 @@
[] (valueOfIndex self [trace php/runtime/env/TraceInfo
index php/runtime/Memory])
php/runtime/Memory
- (`` (<| (~~ (with_template [<class> <method> <extractor>]
+ (`` (<| (,, (with_template [<class> <method> <extractor>]
[(case (ffi.as <class> index)
{.#Some index}
(<method> trace (<extractor> index) self)
@@ -379,7 +379,7 @@
(def (read host_object)
Reader
- (`` (<| (~~ (with_template [<class> <constant>]
+ (`` (<| (,, (with_template [<class> <constant>]
[(case (ffi.as <class> host_object)
{.#Some _}
{try.#Success <constant>}
@@ -389,10 +389,10 @@
[php/runtime/memory/FalseMemory false]
[php/runtime/memory/TrueMemory true]
))
- (~~ (with_template [<class> <post>]
+ (,, (with_template [<class> <post>]
[(case (ffi.as <class> host_object)
{.#Some value}
- (`` (|> value (~~ (template.splice <post>))))
+ (`` (|> value (,, (template.splice <post>))))
{.#None})]