aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/tool/compiler/meta/io/archive.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/tool/compiler/meta/io/archive.lux')
-rw-r--r--stdlib/source/library/lux/tool/compiler/meta/io/archive.lux22
1 files changed, 11 insertions, 11 deletions
diff --git a/stdlib/source/library/lux/tool/compiler/meta/io/archive.lux b/stdlib/source/library/lux/tool/compiler/meta/io/archive.lux
index 8b0d5e6f7..37f464b01 100644
--- a/stdlib/source/library/lux/tool/compiler/meta/io/archive.lux
+++ b/stdlib/source/library/lux/tool/compiler/meta/io/archive.lux
@@ -59,17 +59,17 @@
(def: (module_parser key parser)
(All (_ document)
(-> (Key document) (Parser document) (Parser (module.Module document))))
- ($_ <>.and
- <binary>.nat
- descriptor.parser
- (document.parser key parser)))
+ (all <>.and
+ <binary>.nat
+ descriptor.parser
+ (document.parser key parser)))
(def: (parser key parser)
(All (_ document)
(-> (Key document) (Parser document) (Parser [(module.Module document) Registry])))
- ($_ <>.and
- (..module_parser key parser)
- registry.parser))
+ (all <>.and
+ (..module_parser key parser)
+ registry.parser))
(def: (fresh_analysis_state host configuration)
(-> Target Configuration .Lux)
@@ -276,10 +276,10 @@
(..parser $.key $.parser)
{.#Item [custom_state custom_key custom_format custom_parser custom_compiler] tail}
- ($_ <>.either
- (..parser custom_key custom_parser)
- (cache_parser tail)
- )))
+ (all <>.either
+ (..parser custom_key custom_parser)
+ (cache_parser tail)
+ )))
(def: (valid_cache customs fs context import contexts [module_name @module])
(-> (List Custom) (file.System Async) Context Import (List //.Context)