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-js/source/program.lux | |
parent | 7542b0addd9eaf01dd5f1c4c8a39b67f51a4bd06 (diff) |
De-sigil-ification: &
Diffstat (limited to '')
-rw-r--r-- | lux-js/source/program.lux | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux index 678418bca..76302fa55 100644 --- a/lux-js/source/program.lux +++ b/lux-js/source/program.lux @@ -631,11 +631,11 @@ (IO (Platform [Register Text] _.Expression _.Statement)) (do io.monad [host ..host] - (in [platform.#&file_system (for @.jvm (file.async file.default) - @.jvm (file.async file.default) - ... TODO: Handle this in a safer manner. - ... This would crash if the compiler was run on a browser. - @.js (maybe.trusted file.default)) + (in [platform.#file_system (for @.jvm (file.async file.default) + @.jvm (file.async file.default) + ... TODO: Handle this in a safer manner. + ... This would crash if the compiler was run on a browser. + @.js (maybe.trusted file.default)) platform.#host host platform.#phase js.generate platform.#runtime runtime.generate @@ -725,7 +725,7 @@ service [(packager.package _.use_strict _.code _.then ..scope) (format (cli.target service) - (# (the platform.#&file_system platform) separator) + (# (the platform.#file_system platform) separator) "program" (the context.#artifact_extension context))])] (..declare_success! [])) |