aboutsummaryrefslogtreecommitdiff
path: root/lux-lua
diff options
context:
space:
mode:
authorEduardo Julian2022-04-09 04:10:28 -0400
committerEduardo Julian2022-04-09 04:10:28 -0400
commit659537b4ec859f1e705cdd1f82da29ab1a662d94 (patch)
treefcbfce7370b757009d0425eba1c56646fbc21dd4 /lux-lua
parent04c7f49a732380a2b9f72b1b937171b341c24323 (diff)
De-sigil-ification: *
Diffstat (limited to 'lux-lua')
-rw-r--r--lux-lua/source/program.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/lux-lua/source/program.lux b/lux-lua/source/program.lux
index 0a1eda39b..6f66ac45c 100644
--- a/lux-lua/source/program.lux
+++ b/lux-lua/source/program.lux
@@ -288,7 +288,7 @@
(list $input (` (..read (~ $input))))))
list#conjoint))
- (def: (apply_* to_host self parameters abstraction)
+ (def: (apply/* to_host self parameters abstraction)
(-> (-> Any java/lang/Object) net/sandius/rembulan/runtime/LuaFunction (List java/lang/Object) Any Any)
(<| try.trusted
(do [! try.monad]
@@ -343,7 +343,7 @@
void
"throws" [net/sandius/rembulan/runtime/ResolvedControlThrowable]
(<| (..return %)
- (apply_* to_host
+ (apply/* to_host
(ffi.is net/sandius/rembulan/runtime/LuaFunction self)
(list (~~ (static.literals function.identity (..input/* <arity>))))
lux_function)))]
@@ -361,7 +361,7 @@
void
"throws" [net/sandius/rembulan/runtime/ResolvedControlThrowable]
(<| (..return %)
- (apply_* to_host
+ (apply/* to_host
(ffi.is net/sandius/rembulan/runtime/LuaFunction self)
(array.list {.#None} input/*)
lux_function)))