diff options
Diffstat (limited to 'lux-js/source')
-rw-r--r-- | lux-js/source/program.lux | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux index 80e53eade..c923aace5 100644 --- a/lux-js/source/program.lux +++ b/lux-js/source/program.lux @@ -613,6 +613,11 @@ (-> Any (Promise Any)) (promise.future (\ world/program.default exit +0))) +(def: (scope body) + (-> _.Statement _.Statement) + (_.statement (_.apply/* (_.closure (list) body) + (list)))) + (program: [{service /cli.service}] (exec (do promise.monad [_ (/.compiler {#/static.host @.js @@ -628,7 +633,7 @@ [(& Register Text) _.Expression _.Statement] ..extender service - [(packager.package _.use_strict _.code _.then) + [(packager.package _.use_strict _.code _.then ..scope) (format (/cli.target service) (\ file.default separator) "program.js")])] (..declare_success! [])) (io.io []))) |