diff options
author | Eduardo Julian | 2021-07-12 00:03:36 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-07-12 00:03:36 -0400 |
commit | 86df87512966e8038d70624ab654262ce14a915c (patch) | |
tree | e96d6709c04e7f3fc77f9d9912b86ef34e9c7ef7 /stdlib/source/test/aedifex/metadata | |
parent | abe24425ced15fd784ef6c62d6f186af72b491db (diff) |
Better syntax for parallel-hierarchy imports.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/test/aedifex/metadata.lux | 4 | ||||
-rw-r--r-- | stdlib/source/test/aedifex/metadata/artifact.lux | 9 | ||||
-rw-r--r-- | stdlib/source/test/aedifex/metadata/snapshot.lux | 9 |
3 files changed, 10 insertions, 12 deletions
diff --git a/stdlib/source/test/aedifex/metadata.lux b/stdlib/source/test/aedifex/metadata.lux index 224ce4d80..2975939bc 100644 --- a/stdlib/source/test/aedifex/metadata.lux +++ b/stdlib/source/test/aedifex/metadata.lux @@ -12,8 +12,8 @@ ["#." snapshot] [// ["$." artifact]]] - {#program - ["." /]}) + [\\program + ["." /]]) (def: #export test Test diff --git a/stdlib/source/test/aedifex/metadata/artifact.lux b/stdlib/source/test/aedifex/metadata/artifact.lux index 6c3e509b1..56e856b88 100644 --- a/stdlib/source/test/aedifex/metadata/artifact.lux +++ b/stdlib/source/test/aedifex/metadata/artifact.lux @@ -3,9 +3,8 @@ ["_" test (#+ Test)] [abstract [monad (#+ do)] - {[0 #spec] - [/ - ["$." equivalence]]}] + [\spec + ["$." equivalence]]] [control ["." try ("#\." functor)] [parser @@ -23,8 +22,8 @@ ["." random (#+ Random)]] [macro ["." code]]] - {#program - ["." /]}) + [\\program + ["." /]]) (def: #export random (Random /.Metadata) diff --git a/stdlib/source/test/aedifex/metadata/snapshot.lux b/stdlib/source/test/aedifex/metadata/snapshot.lux index 1858cae25..d94c66761 100644 --- a/stdlib/source/test/aedifex/metadata/snapshot.lux +++ b/stdlib/source/test/aedifex/metadata/snapshot.lux @@ -3,9 +3,8 @@ ["_" test (#+ Test)] [abstract [monad (#+ do)] - {[0 #spec] - [/ - ["$." equivalence]]}] + [\spec + ["$." equivalence]]] [control ["." try ("#\." functor)] [parser @@ -29,12 +28,12 @@ ["#/." time] ["#/." snapshot #_ ["#/." version]]]] - {#program + [\\program ["." / [/// [artifact [versioning (#+ Versioning)] - ["#." snapshot]]]]}) + ["#." snapshot]]]]]) (def: random_instant (Random Instant) |