diff options
author | Eduardo Julian | 2018-07-21 23:57:21 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-21 23:57:21 -0400 |
commit | 9671d6064dd02dfe6c32492f5b9907b096e5bd89 (patch) | |
tree | db89e3908dedd606ce5838096bc5df9ebcc9b1c4 /stdlib/source/lux/compiler/meta/cache.lux | |
parent | 22d10692d87ac1c07fc14f6100917b913bb0f8b3 (diff) |
Re-named "seq" to "and" and "alt" to "or".
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/compiler/meta/cache.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/compiler/meta/cache.lux b/stdlib/source/lux/compiler/meta/cache.lux index fe9a32266..8c93c65e7 100644 --- a/stdlib/source/lux/compiler/meta/cache.lux +++ b/stdlib/source/lux/compiler/meta/cache.lux @@ -99,15 +99,15 @@ ## Load (def: signature (Format Signature) - ($_ binary.seq binary.name binary.text)) + ($_ binary.and binary.name binary.text)) (def: descriptor (Format Descriptor) - ($_ binary.seq binary.nat binary.text (binary.list binary.text) (binary.ignore #.Cached))) + ($_ binary.and binary.nat binary.text (binary.list binary.text) (binary.ignore #.Cached))) (def: document (All [a] (-> (Format a) (Format [Signature Descriptor a]))) - (|>> ($_ binary.seq ..signature ..descriptor))) + (|>> ($_ binary.and ..signature ..descriptor))) (def: (load-document System<m> contexts root key binary module) (All [m d] (-> (System m) (List File) File (Key d) (Format d) Module |