aboutsummaryrefslogtreecommitdiff
path: root/lux-js/source
diff options
context:
space:
mode:
authorEduardo Julian2022-07-02 05:38:27 -0400
committerEduardo Julian2022-07-02 05:38:27 -0400
commitb96beb587c11fcfbce86ce2d62351600cf6cad1b (patch)
treec9a558ab1391ac97cb11e8777ea78299f1ab5555 /lux-js/source
parent104130efba46a875eba566384578f8aa8593ad37 (diff)
More traditional names for unquoting macros.
Diffstat (limited to 'lux-js/source')
-rw-r--r--lux-js/source/program.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux
index 72e08d9f5..6d13abf41 100644
--- a/lux-js/source/program.lux
+++ b/lux-js/source/program.lux
@@ -400,7 +400,7 @@
(exception.except ..undefined_has_no_lux_representation [])
{.#None})
- (~~ (with_template [<class>]
+ (,, (with_template [<class>]
[(case (ffi.is <class> js_object)
{.#Some js_object}
{try.#Success js_object}
@@ -408,7 +408,7 @@
{.#None})]
[java/lang/Boolean] [java/lang/String]))
- (~~ (with_template [<class> <method>]
+ (,, (with_template [<class> <method>]
[(case (ffi.is <class> js_object)
{.#Some js_object}
{try.#Success (<method> js_object)}