diff options
author | Eduardo Julian | 2020-12-11 22:40:31 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-12-11 22:40:31 -0400 |
commit | dff517cbdb9a1c80028782c62ad91c71ddb34909 (patch) | |
tree | f69b4005e8b6dc9699a410554ce4571f60d9e0ee /stdlib/source/program/compositor | |
parent | 9af671a34728b35c48bff2ba163c371dc5084946 (diff) |
Improved parsing speed for Lux code.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/program/compositor.lux | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stdlib/source/program/compositor.lux b/stdlib/source/program/compositor.lux index bd5c10c66..fdd985f2a 100644 --- a/stdlib/source/program/compositor.lux +++ b/stdlib/source/program/compositor.lux @@ -21,8 +21,9 @@ [collection ["." dictionary] ["." row (#+ Row)]]] - [world + ["." world #_ ["." file (#+ File Path)] + ["#/." program] ## ["." console] ] [tool @@ -66,7 +67,7 @@ (exec (log! (format text.new-line failure-description text.new-line error text.new-line)) - (io.run (io.exit +1))) + (io.run (\ world/program.default exit +1))) (#try.Success output) (wrap output)))) |