diff options
author | Eduardo Julian | 2022-04-07 03:27:59 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-04-07 03:27:59 -0400 |
commit | 9224e54bf175ebe13c3fae42f04b649413c737e7 (patch) | |
tree | dab2b19f79e79020792ee0bfe0fb6abe522639a3 /lux-lua | |
parent | 7542b0addd9eaf01dd5f1c4c8a39b67f51a4bd06 (diff) |
De-sigil-ification: &
Diffstat (limited to 'lux-lua')
-rw-r--r-- | lux-lua/source/program.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lux-lua/source/program.lux b/lux-lua/source/program.lux index 1d4a2518b..5c3185252 100644 --- a/lux-lua/source/program.lux +++ b/lux-lua/source/program.lux @@ -312,7 +312,7 @@ [5] )) - (pattern (list& (~~ (static.literals function.identity (..input/* 5))) input/+)) + (pattern (partial_list (~~ (static.literals function.identity (..input/* 5))) input/+)) (again ((as (~~ (static.literal function.identity (..function/* 5))) lux_function) (~~ (static.literals function.identity (..input/* 5)))) @@ -849,7 +849,7 @@ (do io.monad [[baggage host] ..host] (in [baggage - [platform.#&file_system (file.async file.default) + [platform.#file_system (file.async file.default) platform.#host host platform.#phase lua.generate platform.#runtime runtime.generate @@ -861,7 +861,7 @@ (IO (Platform [Register _.Label] _.Expression _.Statement)) (do io.monad [host ..host] - (in [platform.#&file_system (file.async file.default) + (in [platform.#file_system (file.async file.default) platform.#host host platform.#phase lua.generate platform.#runtime runtime.generate |