From 0e34448e5c0ffd9c39d67c2f859e91942e1ab0a4 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Thu, 2 Jun 2022 13:56:01 -0400 Subject: Extensible import syntax [Part 3] --- stdlib/source/test/aedifex/artifact.lux | 2 +- stdlib/source/test/aedifex/artifact/extension.lux | 2 +- stdlib/source/test/aedifex/artifact/snapshot.lux | 2 +- stdlib/source/test/aedifex/artifact/snapshot/build.lux | 2 +- stdlib/source/test/aedifex/artifact/snapshot/stamp.lux | 2 +- stdlib/source/test/aedifex/artifact/snapshot/time.lux | 2 +- stdlib/source/test/aedifex/artifact/snapshot/version.lux | 2 +- stdlib/source/test/aedifex/artifact/snapshot/version/value.lux | 2 +- stdlib/source/test/aedifex/artifact/time.lux | 2 +- stdlib/source/test/aedifex/artifact/time/date.lux | 2 +- stdlib/source/test/aedifex/artifact/time/time.lux | 2 +- stdlib/source/test/aedifex/artifact/type.lux | 2 +- stdlib/source/test/aedifex/artifact/versioning.lux | 2 +- stdlib/source/test/aedifex/cli.lux | 2 +- stdlib/source/test/aedifex/command.lux | 2 +- stdlib/source/test/aedifex/command/auto.lux | 2 +- stdlib/source/test/aedifex/command/build.lux | 2 +- stdlib/source/test/aedifex/command/clean.lux | 2 +- stdlib/source/test/aedifex/command/deploy.lux | 2 +- stdlib/source/test/aedifex/command/deps.lux | 2 +- stdlib/source/test/aedifex/command/install.lux | 2 +- stdlib/source/test/aedifex/command/pom.lux | 2 +- stdlib/source/test/aedifex/command/test.lux | 2 +- stdlib/source/test/aedifex/command/version.lux | 2 +- stdlib/source/test/aedifex/dependency.lux | 2 +- stdlib/source/test/aedifex/dependency/deployment.lux | 2 +- stdlib/source/test/aedifex/dependency/status.lux | 2 +- stdlib/source/test/aedifex/hash.lux | 2 +- stdlib/source/test/aedifex/input.lux | 2 +- stdlib/source/test/aedifex/local.lux | 2 +- stdlib/source/test/aedifex/metadata.lux | 2 +- stdlib/source/test/aedifex/metadata/artifact.lux | 2 +- stdlib/source/test/aedifex/metadata/snapshot.lux | 2 +- stdlib/source/test/aedifex/package.lux | 2 +- stdlib/source/test/aedifex/parser.lux | 2 +- stdlib/source/test/aedifex/pom.lux | 2 +- stdlib/source/test/aedifex/profile.lux | 2 +- stdlib/source/test/aedifex/project.lux | 2 +- stdlib/source/test/aedifex/repository.lux | 2 +- stdlib/source/test/aedifex/repository/identity.lux | 2 +- stdlib/source/test/aedifex/repository/local.lux | 2 +- stdlib/source/test/aedifex/repository/origin.lux | 2 +- stdlib/source/test/aedifex/repository/remote.lux | 2 +- stdlib/source/test/aedifex/runtime.lux | 2 +- 44 files changed, 44 insertions(+), 44 deletions(-) (limited to 'stdlib/source/test/aedifex') diff --git a/stdlib/source/test/aedifex/artifact.lux b/stdlib/source/test/aedifex/artifact.lux index 7cbf804c5..1dcc00f38 100644 --- a/stdlib/source/test/aedifex/artifact.lux +++ b/stdlib/source/test/aedifex/artifact.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/artifact/extension.lux b/stdlib/source/test/aedifex/artifact/extension.lux index b9184c15a..5ec2f0939 100644 --- a/stdlib/source/test/aedifex/artifact/extension.lux +++ b/stdlib/source/test/aedifex/artifact/extension.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/artifact/snapshot.lux b/stdlib/source/test/aedifex/artifact/snapshot.lux index b09095646..adfb1efc8 100644 --- a/stdlib/source/test/aedifex/artifact/snapshot.lux +++ b/stdlib/source/test/aedifex/artifact/snapshot.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/artifact/snapshot/build.lux b/stdlib/source/test/aedifex/artifact/snapshot/build.lux index 8a722c72a..a9435d710 100644 --- a/stdlib/source/test/aedifex/artifact/snapshot/build.lux +++ b/stdlib/source/test/aedifex/artifact/snapshot/build.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/artifact/snapshot/stamp.lux b/stdlib/source/test/aedifex/artifact/snapshot/stamp.lux index 54aa5d8af..92034c73f 100644 --- a/stdlib/source/test/aedifex/artifact/snapshot/stamp.lux +++ b/stdlib/source/test/aedifex/artifact/snapshot/stamp.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/artifact/snapshot/time.lux b/stdlib/source/test/aedifex/artifact/snapshot/time.lux index 1e40d43d7..e56495624 100644 --- a/stdlib/source/test/aedifex/artifact/snapshot/time.lux +++ b/stdlib/source/test/aedifex/artifact/snapshot/time.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/artifact/snapshot/version.lux b/stdlib/source/test/aedifex/artifact/snapshot/version.lux index 951e78380..59860fec4 100644 --- a/stdlib/source/test/aedifex/artifact/snapshot/version.lux +++ b/stdlib/source/test/aedifex/artifact/snapshot/version.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/artifact/snapshot/version/value.lux b/stdlib/source/test/aedifex/artifact/snapshot/version/value.lux index 511abf693..e157ff361 100644 --- a/stdlib/source/test/aedifex/artifact/snapshot/version/value.lux +++ b/stdlib/source/test/aedifex/artifact/snapshot/version/value.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/artifact/time.lux b/stdlib/source/test/aedifex/artifact/time.lux index e3e853a86..a74865f0c 100644 --- a/stdlib/source/test/aedifex/artifact/time.lux +++ b/stdlib/source/test/aedifex/artifact/time.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/artifact/time/date.lux b/stdlib/source/test/aedifex/artifact/time/date.lux index 1180f66b2..1aba681db 100644 --- a/stdlib/source/test/aedifex/artifact/time/date.lux +++ b/stdlib/source/test/aedifex/artifact/time/date.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/artifact/time/time.lux b/stdlib/source/test/aedifex/artifact/time/time.lux index b666871fd..1627e7724 100644 --- a/stdlib/source/test/aedifex/artifact/time/time.lux +++ b/stdlib/source/test/aedifex/artifact/time/time.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] ["[0]" time] [abstract diff --git a/stdlib/source/test/aedifex/artifact/type.lux b/stdlib/source/test/aedifex/artifact/type.lux index 631538bc4..a65a652f5 100644 --- a/stdlib/source/test/aedifex/artifact/type.lux +++ b/stdlib/source/test/aedifex/artifact/type.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/artifact/versioning.lux b/stdlib/source/test/aedifex/artifact/versioning.lux index 3a05977e2..2f345da94 100644 --- a/stdlib/source/test/aedifex/artifact/versioning.lux +++ b/stdlib/source/test/aedifex/artifact/versioning.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/cli.lux b/stdlib/source/test/aedifex/cli.lux index adaf85064..45e1f7b23 100644 --- a/stdlib/source/test/aedifex/cli.lux +++ b/stdlib/source/test/aedifex/cli.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/command.lux b/stdlib/source/test/aedifex/command.lux index 3dd0a2dc5..728bff970 100644 --- a/stdlib/source/test/aedifex/command.lux +++ b/stdlib/source/test/aedifex/command.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)]]] ["[0]" / "_" ["[1][0]" version] diff --git a/stdlib/source/test/aedifex/command/auto.lux b/stdlib/source/test/aedifex/command/auto.lux index b014162ea..eac71601d 100644 --- a/stdlib/source/test/aedifex/command/auto.lux +++ b/stdlib/source/test/aedifex/command/auto.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/command/build.lux b/stdlib/source/test/aedifex/command/build.lux index ac25c782f..68d9aedc3 100644 --- a/stdlib/source/test/aedifex/command/build.lux +++ b/stdlib/source/test/aedifex/command/build.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/command/clean.lux b/stdlib/source/test/aedifex/command/clean.lux index 12c563343..e6b9019b2 100644 --- a/stdlib/source/test/aedifex/command/clean.lux +++ b/stdlib/source/test/aedifex/command/clean.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract ["[0]" monad (.only do)]] diff --git a/stdlib/source/test/aedifex/command/deploy.lux b/stdlib/source/test/aedifex/command/deploy.lux index a1d55a274..de4c79b7f 100644 --- a/stdlib/source/test/aedifex/command/deploy.lux +++ b/stdlib/source/test/aedifex/command/deploy.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/command/deps.lux b/stdlib/source/test/aedifex/command/deps.lux index f4a30323e..c423f822e 100644 --- a/stdlib/source/test/aedifex/command/deps.lux +++ b/stdlib/source/test/aedifex/command/deps.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/command/install.lux b/stdlib/source/test/aedifex/command/install.lux index e60f7d06c..3bbc052eb 100644 --- a/stdlib/source/test/aedifex/command/install.lux +++ b/stdlib/source/test/aedifex/command/install.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract ["[0]" monad (.only do)]] diff --git a/stdlib/source/test/aedifex/command/pom.lux b/stdlib/source/test/aedifex/command/pom.lux index 84e225678..b0453fb9e 100644 --- a/stdlib/source/test/aedifex/command/pom.lux +++ b/stdlib/source/test/aedifex/command/pom.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/command/test.lux b/stdlib/source/test/aedifex/command/test.lux index 520609c43..93a55d03f 100644 --- a/stdlib/source/test/aedifex/command/test.lux +++ b/stdlib/source/test/aedifex/command/test.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/command/version.lux b/stdlib/source/test/aedifex/command/version.lux index b8792434a..1a9c22027 100644 --- a/stdlib/source/test/aedifex/command/version.lux +++ b/stdlib/source/test/aedifex/command/version.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/dependency.lux b/stdlib/source/test/aedifex/dependency.lux index 01fb3f6dc..4688256ab 100644 --- a/stdlib/source/test/aedifex/dependency.lux +++ b/stdlib/source/test/aedifex/dependency.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/dependency/deployment.lux b/stdlib/source/test/aedifex/dependency/deployment.lux index d647ad815..f535c2383 100644 --- a/stdlib/source/test/aedifex/dependency/deployment.lux +++ b/stdlib/source/test/aedifex/dependency/deployment.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/dependency/status.lux b/stdlib/source/test/aedifex/dependency/status.lux index f41c64825..ca0f9002d 100644 --- a/stdlib/source/test/aedifex/dependency/status.lux +++ b/stdlib/source/test/aedifex/dependency/status.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/hash.lux b/stdlib/source/test/aedifex/hash.lux index 880d721b3..e5145908d 100644 --- a/stdlib/source/test/aedifex/hash.lux +++ b/stdlib/source/test/aedifex/hash.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/input.lux b/stdlib/source/test/aedifex/input.lux index 87d9daa51..d917b5903 100644 --- a/stdlib/source/test/aedifex/input.lux +++ b/stdlib/source/test/aedifex/input.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/local.lux b/stdlib/source/test/aedifex/local.lux index effbbfffb..bc8016743 100644 --- a/stdlib/source/test/aedifex/local.lux +++ b/stdlib/source/test/aedifex/local.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/metadata.lux b/stdlib/source/test/aedifex/metadata.lux index d4919de21..bcdfee998 100644 --- a/stdlib/source/test/aedifex/metadata.lux +++ b/stdlib/source/test/aedifex/metadata.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/metadata/artifact.lux b/stdlib/source/test/aedifex/metadata/artifact.lux index ed3690608..e78d7b977 100644 --- a/stdlib/source/test/aedifex/metadata/artifact.lux +++ b/stdlib/source/test/aedifex/metadata/artifact.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/metadata/snapshot.lux b/stdlib/source/test/aedifex/metadata/snapshot.lux index 3c4bb2395..34afe63bd 100644 --- a/stdlib/source/test/aedifex/metadata/snapshot.lux +++ b/stdlib/source/test/aedifex/metadata/snapshot.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/package.lux b/stdlib/source/test/aedifex/package.lux index 84e3005c5..6819da2ac 100644 --- a/stdlib/source/test/aedifex/package.lux +++ b/stdlib/source/test/aedifex/package.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/parser.lux b/stdlib/source/test/aedifex/parser.lux index 038037372..e1c6dfa08 100644 --- a/stdlib/source/test/aedifex/parser.lux +++ b/stdlib/source/test/aedifex/parser.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/pom.lux b/stdlib/source/test/aedifex/pom.lux index edaeca6cc..1c2dee136 100644 --- a/stdlib/source/test/aedifex/pom.lux +++ b/stdlib/source/test/aedifex/pom.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/profile.lux b/stdlib/source/test/aedifex/profile.lux index 7dd2981bf..29f2e3633 100644 --- a/stdlib/source/test/aedifex/profile.lux +++ b/stdlib/source/test/aedifex/profile.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/project.lux b/stdlib/source/test/aedifex/project.lux index 68e3c0e6d..dda9723f1 100644 --- a/stdlib/source/test/aedifex/project.lux +++ b/stdlib/source/test/aedifex/project.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] diff --git a/stdlib/source/test/aedifex/repository.lux b/stdlib/source/test/aedifex/repository.lux index 465d46709..e2dc13f1d 100644 --- a/stdlib/source/test/aedifex/repository.lux +++ b/stdlib/source/test/aedifex/repository.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [equivalence (.only Equivalence)] diff --git a/stdlib/source/test/aedifex/repository/identity.lux b/stdlib/source/test/aedifex/repository/identity.lux index 9dbd6a858..224b0e1f3 100644 --- a/stdlib/source/test/aedifex/repository/identity.lux +++ b/stdlib/source/test/aedifex/repository/identity.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [\\specification diff --git a/stdlib/source/test/aedifex/repository/local.lux b/stdlib/source/test/aedifex/repository/local.lux index d8867b598..2b0f7508b 100644 --- a/stdlib/source/test/aedifex/repository/local.lux +++ b/stdlib/source/test/aedifex/repository/local.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/repository/origin.lux b/stdlib/source/test/aedifex/repository/origin.lux index 2f652b513..e798936a2 100644 --- a/stdlib/source/test/aedifex/repository/origin.lux +++ b/stdlib/source/test/aedifex/repository/origin.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [\\specification diff --git a/stdlib/source/test/aedifex/repository/remote.lux b/stdlib/source/test/aedifex/repository/remote.lux index 79c4987a0..ac472ca0e 100644 --- a/stdlib/source/test/aedifex/repository/remote.lux +++ b/stdlib/source/test/aedifex/repository/remote.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)]] diff --git a/stdlib/source/test/aedifex/runtime.lux b/stdlib/source/test/aedifex/runtime.lux index a324b2dd4..23f863a7b 100644 --- a/stdlib/source/test/aedifex/runtime.lux +++ b/stdlib/source/test/aedifex/runtime.lux @@ -1,6 +1,6 @@ (.using [library - [lux "*" + [lux (.full) ["_" test (.only Test)] [abstract [monad (.only do)] -- cgit v1.2.3