aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/tool/compiler/meta/archive.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/tool/compiler/meta/archive.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/tool/compiler/meta/archive.lux b/stdlib/source/library/lux/tool/compiler/meta/archive.lux
index d8347d9fd..4ec08ed90 100644
--- a/stdlib/source/library/lux/tool/compiler/meta/archive.lux
+++ b/stdlib/source/library/lux/tool/compiler/meta/archive.lux
@@ -108,7 +108,7 @@
{try.#Success [/#next
(|> archive
:representation
- (revised@ #resolver (dictionary.has module [/#next {.#None}]))
+ (revised@ #resolver (dictionary.has module [/#next (: (Maybe (Entry Any)) {.#None})]))
(revised@ #next ++)
:abstraction)]})))
@@ -261,7 +261,7 @@
(in (:abstraction
[#next next
#resolver (list#mix (function (_ [module id] archive)
- (dictionary.has module [id {.#None}] archive))
+ (dictionary.has module [id (: (Maybe (Entry Any)) {.#None})] archive))
(value@ #resolver (:representation ..empty))
reservations)]))))
)