aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test
diff options
context:
space:
mode:
authorEduardo Julian2022-06-15 03:34:49 -0400
committerEduardo Julian2022-06-15 03:34:49 -0400
commitbb16d7e4a3307cc9540f368cf5c354a72af8ec61 (patch)
tree6857ba66a949fd3128e9c7e13f89618b65425c98 /stdlib/source/test
parent64d12f85e861cb8ab4d59c31f0f8d2b71b865852 (diff)
Made the `` macro extensible.
Diffstat (limited to 'stdlib/source/test')
-rw-r--r--stdlib/source/test/lux.lux14
-rw-r--r--stdlib/source/test/lux/extension.lux18
2 files changed, 16 insertions, 16 deletions
diff --git a/stdlib/source/test/lux.lux b/stdlib/source/test/lux.lux
index 37d57a3ac..aa18015e5 100644
--- a/stdlib/source/test/lux.lux
+++ b/stdlib/source/test/lux.lux
@@ -66,13 +66,13 @@
["[1][0]" ffi]
["[1][0]" extension]
["[1][0]" target (.only)
- (~~ (.for "{old}" (~~ (.these ["[1]/[0]" jvm]))
- "JVM" (~~ (.these ["[1]/[0]" jvm]))
- "JavaScript" (~~ (.these ["[1]/[0]" js]))
- "Lua" (~~ (.these ["[1]/[0]" lua]))
- "Python" (~~ (.these ["[1]/[0]" python]))
- "Ruby" (~~ (.these ["[1]/[0]" ruby]))
- (~~ (.these))))]
+ (.~~ (.for "{old}" (.~~ (.these ["[1]/[0]" jvm]))
+ "JVM" (.~~ (.these ["[1]/[0]" jvm]))
+ "JavaScript" (.~~ (.these ["[1]/[0]" js]))
+ "Lua" (.~~ (.these ["[1]/[0]" lua]))
+ "Python" (.~~ (.these ["[1]/[0]" python]))
+ "Ruby" (.~~ (.these ["[1]/[0]" ruby]))
+ (.~~ (.these))))]
])))
(def: for_bit
diff --git a/stdlib/source/test/lux/extension.lux b/stdlib/source/test/lux/extension.lux
index 30accf1b0..22b8813e7 100644
--- a/stdlib/source/test/lux/extension.lux
+++ b/stdlib/source/test/lux/extension.lux
@@ -10,12 +10,12 @@
["[0]" php]
["[0]" scheme]
["[0]" jvm
- (~~ (.for "JVM" (~~ (.these ["[1]" bytecode]
- ["[0]" class]
- ["[0]" version]
- [encoding
- ["[0]" name]]))
- (~~ (.these))))]]
+ (.~~ (.for "JVM" (.~~ (.these ["[1]" bytecode]
+ ["[0]" class]
+ ["[0]" version]
+ [encoding
+ ["[0]" name]]))
+ (.~~ (.these))))]]
[abstract
["[0]" monad (.only do)]]
[control
@@ -54,9 +54,9 @@
["<[1]>" \\parser]]
[phase
[generation
- (~~ (.for "JVM" (~~ (.these ["[0]" jvm
- ["[1]/[0]" runtime]]))
- (~~ (.these))))]]]]]]
+ (.~~ (.for "JVM" (.~~ (.these ["[0]" jvm
+ ["[1]/[0]" runtime]]))
+ (.~~ (.these))))]]]]]]
["_" test (.only Test)]]]
[\\library
["[0]" / (.only analysis synthesis generation directive)]])))