diff options
Diffstat (limited to 'lux-js/source')
-rw-r--r-- | lux-js/source/program.lux | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux index c0c3cf99e..c3f7cd311 100644 --- a/lux-js/source/program.lux +++ b/lux-js/source/program.lux @@ -541,7 +541,7 @@ (def: (define context custom [_ input]) (..define! interpreter context custom input)) (def: (ingest context content) - (|> content (# utf8.codec decoded) try.trusted (as _.Statement))) + (|> content (at utf8.codec decoded) try.trusted (as _.Statement))) (def: (re_learn context custom content) (..execute! interpreter content)) @@ -600,7 +600,7 @@ (def: (define context custom [_ input]) (..define! context custom input)) (def: (ingest context content) - (|> content (# utf8.codec decoded) try.trusted (as _.Statement))) + (|> content (at utf8.codec decoded) try.trusted (as _.Statement))) (def: (re_learn context custom content) (..execute! content)) @@ -640,7 +640,7 @@ platform.#phase js.generate platform.#runtime runtime.generate platform.#phase_wrapper ..phase_wrapper - platform.#write (|>> _.code (# utf8.codec encoded))]))) + platform.#write (|>> _.code (at utf8.codec encoded))]))) (def: (program context program) (Program _.Expression _.Statement) @@ -696,7 +696,7 @@ (def: (declare_success! _) (-> Any (Async Any)) - (async.future (# world/program.default exit +0))) + (async.future (at world/program.default exit +0))) (def: (scope body) (-> _.Statement _.Statement) @@ -725,7 +725,7 @@ service [(packager.package _.use_strict _.code _.then ..scope) (format (cli.target service) - (# (the platform.#file_system platform) separator) + (at (the platform.#file_system platform) separator) "program" (the context.#artifact_extension context))])] (..declare_success! [])) |