aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/extension.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-12 15:39:55 -0400
committerEduardo Julian2021-09-12 15:39:55 -0400
commit2dbbaaec93a53f8dd0b96a0028b9cf125c9066cd (patch)
tree14bc8b5abe09b46ef005c3ff7cf132f1d98ddf0d /stdlib/source/test/lux/extension.lux
parentdda05bca0956af5e5b3875c4cc36e61aa04772e4 (diff)
Re-named \ => # && \\ => ##
Diffstat (limited to 'stdlib/source/test/lux/extension.lux')
-rw-r--r--stdlib/source/test/lux/extension.lux20
1 files changed, 10 insertions, 10 deletions
diff --git a/stdlib/source/test/lux/extension.lux b/stdlib/source/test/lux/extension.lux
index 20b1a5357..80134f010 100644
--- a/stdlib/source/test/lux/extension.lux
+++ b/stdlib/source/test/lux/extension.lux
@@ -20,11 +20,11 @@
["<[0]>" synthesis]]]
[data
["[0]" product]
- ["[0]" text ("[1]\[0]" equivalence)
+ ["[0]" text ("[1]#[0]" equivalence)
["%" format {"+" [format]}]]
[collection
["[0]" row]
- ["[0]" list ("[1]\[0]" functor)]]]
+ ["[0]" list ("[1]#[0]" functor)]]]
[math
["[0]" random]
[number
@@ -64,7 +64,7 @@
(let [! phase.monad]
(|> parameters
(monad.each ! (phase archive))
- (\ ! each (|>> {analysis.#Extension self})))))
+ (# ! each (|>> {analysis.#Extension self})))))
(synthesis: (..my_synthesis self phase archive [pass_through <analysis>.any])
(phase archive pass_through))
@@ -74,28 +74,28 @@
(let [! phase.monad]
(|> parameters
(monad.each ! (phase archive))
- (\ ! each (|>> {analysis.#Extension self})))))
+ (# ! each (|>> {analysis.#Extension self})))))
(synthesis: (..my_generation self phase archive [parameters (<>.some <analysis>.any)])
(let [! phase.monad]
(|> parameters
(monad.each ! (phase archive))
- (\ ! each (|>> {synthesis.#Extension self})))))
+ (# ! each (|>> {synthesis.#Extension self})))))
(generation: (..my_generation self phase archive [pass_through <synthesis>.any])
(for [@.jvm
- (\ phase.monad each (|>> {jvm.#Embedded} row.row)
+ (# phase.monad each (|>> {jvm.#Embedded} row.row)
(phase archive pass_through))]
(phase archive pass_through)))
(analysis: (..dummy_generation self phase archive [])
- (\ phase.monad in {analysis.#Extension self (list)}))
+ (# phase.monad in {analysis.#Extension self (list)}))
(synthesis: (..dummy_generation self phase archive [])
- (\ phase.monad in {synthesis.#Extension self (list)}))
+ (# phase.monad in {synthesis.#Extension self (list)}))
(generation: (..dummy_generation self phase archive [])
- (\ phase.monad in
+ (# phase.monad in
(for [@.jvm
(row.row {jvm.#Constant {jvm.#LDC {jvm.#String self}}})
@@ -135,7 +135,7 @@
false]
(and (n.= expected
(`` ((~~ (static ..my_generation)) expected)))
- (text\= ..dummy_generation
+ (text#= ..dummy_generation
(`` ((~~ (static ..dummy_generation))))))))
(_.cover [/.directive:]
true)