aboutsummaryrefslogtreecommitdiff
path: root/lux-js/source
diff options
context:
space:
mode:
authorEduardo Julian2022-06-04 19:34:42 -0400
committerEduardo Julian2022-06-04 19:34:42 -0400
commitf9e33ae96aec4741385a576719786092c9e68043 (patch)
tree140057dfc054346eab721f9905f0f0fff22ad933 /lux-js/source
parent56d2835d35093e2d92c5e8a4371aa322b55e037b (diff)
De-sigil-ification: #
Diffstat (limited to 'lux-js/source')
-rw-r--r--lux-js/source/program.lux10
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! []))