aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux')
-rw-r--r--stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux40
1 files changed, 20 insertions, 20 deletions
diff --git a/stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux b/stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux
index 84b644f47..78269e9a6 100644
--- a/stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux
+++ b/stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux
@@ -1,7 +1,7 @@
... https://en.wikipedia.org/wiki/Tree_shaking
(.using
[library
- [lux "*"
+ [lux {"-" all}
[abstract
[hash {"+" Hash}]
["[0]" monad {"+" do}]]
@@ -47,18 +47,18 @@
(^.template [<tag>]
[{<tag> left right}
- (all list#composite
- (again left)
- (again right))])
+ (.all list#composite
+ (again left)
+ (again right))])
([synthesis.#Alt]
[synthesis.#Seq])
{synthesis.#Bit_Fork when then else}
(case else
{.#Some else}
- (all list#composite
- (again then)
- (again else))
+ (.all list#composite
+ (again then)
+ (again else))
{.#None}
(again then))
@@ -106,28 +106,28 @@
{synthesis.#Branch value}
(case value
{synthesis.#Exec this that}
- (all list#composite
- (references this)
- (references that))
+ (.all list#composite
+ (references this)
+ (references that))
{synthesis.#Let input _ body}
- (all list#composite
- (references input)
- (references body))
+ (.all list#composite
+ (references input)
+ (references body))
{synthesis.#If test then else}
- (all list#composite
- (references test)
- (references then)
- (references else))
+ (.all list#composite
+ (references test)
+ (references then)
+ (references else))
{synthesis.#Get _ record}
(references record)
{synthesis.#Case input path}
- (all list#composite
- (references input)
- (path_references references path)))
+ (.all list#composite
+ (references input)
+ (path_references references path)))
{synthesis.#Loop value}
(case value