aboutsummaryrefslogtreecommitdiff
path: root/lux-js/source/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'lux-js/source/program.lux')
-rw-r--r--lux-js/source/program.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux
index 43f03a501..8b1d38e99 100644
--- a/lux-js/source/program.lux
+++ b/lux-js/source/program.lux
@@ -505,9 +505,9 @@
(org/openjdk/nashorn/api/scripting/NashornScriptEngineFactory::new))]
(: (Host _.Expression _.Statement)
(implementation
- (def: evaluate! (..evaluate! interpreter))
- (def: execute! (..execute! interpreter))
- (def: define! (..define! interpreter))
+ (def: evaluate (..evaluate! interpreter))
+ (def: execute (..execute! interpreter))
+ (def: define (..define! interpreter))
(def: (ingest context content)
(|> content (# utf8.codec decoded) try.trusted (:as _.Statement)))
@@ -564,9 +564,9 @@
(IO (Host _.Expression _.Statement))
(io (: (Host _.Expression _.Statement)
(implementation
- (def: evaluate! ..evaluate!)
- (def: execute! ..execute!)
- (def: define! ..define!)
+ (def: evaluate ..evaluate!)
+ (def: execute ..execute!)
+ (def: define ..define!)
(def: (ingest context content)
(|> content (# utf8.codec decoded) try.trusted (:as _.Statement)))