diff options
author | Eduardo Julian | 2019-08-10 23:46:33 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-08-10 23:46:33 -0400 |
commit | 85239d2c294a28b45f46f0b1333d161a403270f6 (patch) | |
tree | a3c8a06f244a0bdf48ab1e337cdabc5113827c50 /stdlib | |
parent | c06ee7d55123c4f87cd15e15f8d25b9ab08ea3f3 (diff) |
Got the new compiler working again.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/control/parser/synthesis.lux | 3 | ||||
-rw-r--r-- | stdlib/source/lux/tool/compiler/meta/io/context.lux | 4 | ||||
-rw-r--r-- | stdlib/source/lux/tool/compiler/meta/packager/script.lux | 5 |
3 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/lux/control/parser/synthesis.lux b/stdlib/source/lux/control/parser/synthesis.lux index 1b0a38acd..8fdeb4911 100644 --- a/stdlib/source/lux/control/parser/synthesis.lux +++ b/stdlib/source/lux/control/parser/synthesis.lux @@ -16,7 +16,8 @@ ["%" format (#+ format)]]] [tool [compiler - [analysis (#+ Variant Tuple Environment Arity)] + [arity (#+ Arity)] + [analysis (#+ Variant Tuple Environment)] ["/" synthesis (#+ Synthesis Abstraction)]]]] ["." //]) diff --git a/stdlib/source/lux/tool/compiler/meta/io/context.lux b/stdlib/source/lux/tool/compiler/meta/io/context.lux index 2e4b355bd..cc23f11be 100644 --- a/stdlib/source/lux/tool/compiler/meta/io/context.lux +++ b/stdlib/source/lux/tool/compiler/meta/io/context.lux @@ -9,12 +9,12 @@ [security ["!" capability]]] [data + [binary (#+ Binary)] ["." text ("#;." hash) ["%" format (#+ format)] ["." encoding]]] [world - ["." file (#+ Path File)] - [binary (#+ Binary)]] + ["." file (#+ Path File)]] [type (#+ :share)]] ["." // (#+ Context Code) ["#/" // #_ diff --git a/stdlib/source/lux/tool/compiler/meta/packager/script.lux b/stdlib/source/lux/tool/compiler/meta/packager/script.lux index 5693b59be..8e7988f37 100644 --- a/stdlib/source/lux/tool/compiler/meta/packager/script.lux +++ b/stdlib/source/lux/tool/compiler/meta/packager/script.lux @@ -3,6 +3,7 @@ [control [pipe (#+ case>)]] [data + [binary (#+ Binary)] ["." product] ["." text ["." encoding]] @@ -14,9 +15,7 @@ [tool [compiler [phase - [generation (#+ Output)]]]] - [world - [binary (#+ Binary)]]]) + [generation (#+ Output)]]]]]) (def: #export (package outputs) (All [statements] |