aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/compiler/default/cache.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/compiler/default/cache.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/lux/compiler/default/cache.lux b/stdlib/source/lux/compiler/default/cache.lux
index d8f841e13..1b5f595fd 100644
--- a/stdlib/source/lux/compiler/default/cache.lux
+++ b/stdlib/source/lux/compiler/default/cache.lux
@@ -6,23 +6,23 @@
(def: definition
(Format Definition)
- ($_ _.seq _.type _.code _.any))
+ ($_ _.and _.type _.code _.any))
(def: alias
(Format [Text Text])
- (_.seq _.text _.text))
+ (_.and _.text _.text))
## TODO: Remove #module-hash, #imports & #module-state ASAP.
## TODO: Not just from this parser, but from the lux.Module type.
(def: #export module
(Format Module)
- ($_ _.seq
+ ($_ _.and
## #module-hash
(_.ignore +0)
## #module-aliases
(_.list ..alias)
## #definitions
- (_.list (_.seq _.text ..definition))
+ (_.list (_.and _.text ..definition))
## #imports
(_.list _.text)
## #tags