diff options
author | Eduardo Julian | 2022-06-03 20:02:46 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-03 20:02:46 -0400 |
commit | 3e7d188cbe7bc9bce4a14318e2f62583fe2501d1 (patch) | |
tree | 9dde4f6cb8f16829b2fa43fbccffaa1b3e2659bd /stdlib/source/program/aedifex/metadata | |
parent | 0e34448e5c0ffd9c39d67c2f859e91942e1ab0a4 (diff) |
Extensible import syntax [Part 4]
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/program/aedifex/metadata.lux | 4 | ||||
-rw-r--r-- | stdlib/source/program/aedifex/metadata/artifact.lux | 8 | ||||
-rw-r--r-- | stdlib/source/program/aedifex/metadata/snapshot.lux | 10 |
3 files changed, 11 insertions, 11 deletions
diff --git a/stdlib/source/program/aedifex/metadata.lux b/stdlib/source/program/aedifex/metadata.lux index 7900ad204..e85c4dd5b 100644 --- a/stdlib/source/program/aedifex/metadata.lux +++ b/stdlib/source/program/aedifex/metadata.lux @@ -2,13 +2,13 @@ [library [lux (.full) [data - ["[0]" text + ["[0]" text (.only) ["%" format (.only format)]]] [world [file (.only Path)] [net ["[0]" uri (.only URI)]]]]] - ["[0]" // "_" + ["[0]" // ["[1][0]" artifact (.only Artifact)]]) (def: remote_file diff --git a/stdlib/source/program/aedifex/metadata/artifact.lux b/stdlib/source/program/aedifex/metadata/artifact.lux index b5cffce20..6391eb70a 100644 --- a/stdlib/source/program/aedifex/metadata/artifact.lux +++ b/stdlib/source/program/aedifex/metadata/artifact.lux @@ -7,14 +7,14 @@ [control ["[0]" pipe] ["[0]" try (.only Try)] - ["<>" parser + ["<>" parser (.only) ["<[0]>" xml (.only Parser)] ["<[0]>" text]] [concurrency ["[0]" async (.only Async)]]] [data ["[0]" product] - ["[0]" text + ["[0]" text (.only) ["%" format] [encoding ["[0]" utf8]]] @@ -33,8 +33,8 @@ [world [net ["[0]" uri (.only URI)]]]]] - ["[0]" // - ["/[1]" // "_" + ["[0]" // (.only) + ["/[1]" // [repository (.only Repository)] ["[1][0]" artifact (.only Group Name Version Artifact)]]]) diff --git a/stdlib/source/program/aedifex/metadata/snapshot.lux b/stdlib/source/program/aedifex/metadata/snapshot.lux index deb58391e..1e0879467 100644 --- a/stdlib/source/program/aedifex/metadata/snapshot.lux +++ b/stdlib/source/program/aedifex/metadata/snapshot.lux @@ -8,14 +8,14 @@ ["[0]" pipe] ["[0]" try (.only Try)] ["[0]" exception (.only exception:)] - ["<>" parser + ["<>" parser (.only) ["<[0]>" xml (.only Parser)] ["<[0]>" text]] [concurrency ["[0]" async (.only Async)]]] [data ["[0]" product] - ["[0]" text + ["[0]" text (.only) ["%" format] [encoding ["[0]" utf8]]] @@ -34,14 +34,14 @@ [world [net ["[0]" uri (.only URI)]]]]] - ["[0]" // - ["/[1]" // "_" + ["[0]" // (.only) + ["/[1]" // [repository (.only Repository)] ["[1][0]" artifact (.only Group Name Version Artifact) ["[1]/[0]" time] ["[1]/[0]" type (.only Type)] ["[1]/[0]" versioning (.only Versioning)] - ["[1]/[0]" snapshot + ["[1]/[0]" snapshot (.only) ["[1]/[0]" version] ["[1]/[0]" stamp]]]]]) |