diff options
author | Eduardo Julian | 2020-06-29 00:11:01 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-06-29 00:11:01 -0400 |
commit | 5d2512af61ac17bca25a4790ea01c24f7d2415da (patch) | |
tree | d55c001f8163f53f887a4dcf3a25141ca06acd00 /stdlib/source/lux/tool/compiler/meta/io.lux | |
parent | b1606a5efcba32abe722759dbfca02586ff2179a (diff) |
Added the missing cache invalidation to the new compiler.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/tool/compiler/meta/io.lux | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/stdlib/source/lux/tool/compiler/meta/io.lux b/stdlib/source/lux/tool/compiler/meta/io.lux index 11faee222..41481d0fa 100644 --- a/stdlib/source/lux/tool/compiler/meta/io.lux +++ b/stdlib/source/lux/tool/compiler/meta/io.lux @@ -5,12 +5,15 @@ [world [file (#+ Path System)]]]) -(type: #export Context Path) +(type: #export Context + Path) -(type: #export Code Text) +(type: #export Code + Text) (def: #export (sanitize system) (All [m] (-> (System m) Text Text)) (text.replace-all "/" (:: system separator))) -(def: #export lux-context "lux") +(def: #export lux-context + "lux") |