diff options
author | Eduardo Julian | 2022-07-02 05:38:27 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-07-02 05:38:27 -0400 |
commit | b96beb587c11fcfbce86ce2d62351600cf6cad1b (patch) | |
tree | c9a558ab1391ac97cb11e8777ea78299f1ab5555 /lux-php | |
parent | 104130efba46a875eba566384578f8aa8593ad37 (diff) |
More traditional names for unquoting macros.
Diffstat (limited to 'lux-php')
-rw-r--r-- | lux-php/source/program.lux | 10 |
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})] |