aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/format/xml.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-14 02:56:22 -0400
committerEduardo Julian2021-09-14 02:56:22 -0400
commit971767f1eafb22208912353d8709f11081f2d3c8 (patch)
tree9b043f1238af49a33c1a625d737c9f0e1abb6e99 /stdlib/source/test/lux/data/format/xml.lux
parent1c93f003f73116202b1f964b0d1b6d3f07b69fb0 (diff)
Re-named "Identifier" to "Symbol".
Diffstat (limited to 'stdlib/source/test/lux/data/format/xml.lux')
-rw-r--r--stdlib/source/test/lux/data/format/xml.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/test/lux/data/format/xml.lux b/stdlib/source/test/lux/data/format/xml.lux
index 840455f41..4c56dc5e2 100644
--- a/stdlib/source/test/lux/data/format/xml.lux
+++ b/stdlib/source/test/lux/data/format/xml.lux
@@ -1,6 +1,6 @@
(.module:
[library
- [lux {"-" char}
+ [lux {"-" char symbol}
["_" test {"+" Test}]
[abstract
[monad {"+" Monad do}]
@@ -51,7 +51,7 @@
[size (..size bottom top)]
(random.text ..char size)))
-(def: identifier
+(def: symbol
(Random Symbol)
(random.and (..text 0 10)
(..text 1 10)))
@@ -63,8 +63,8 @@
(do random.monad
[size (..size 0 2)]
($_ random.and
- ..identifier
- (random.dictionary symbol.hash size ..identifier (..text 0 10))
+ ..symbol
+ (random.dictionary symbol.hash size ..symbol (..text 0 10))
(random.list size random)))))))
(def: .public test
@@ -78,14 +78,14 @@
($codec.spec /.equivalence /.codec ..random))
(do [! random.monad]
- [(^@ identifier [namespace name]) ..identifier]
+ [(^@ symbol [namespace name]) ..symbol]
(`` ($_ _.and
(~~ (template [<type> <format>]
[(_.cover [<type> <format>]
(and (text#= name (<format> ["" name]))
- (let [identifier (<format> identifier)]
- (and (text.starts_with? namespace identifier)
- (text.ends_with? name identifier)))))]
+ (let [symbol (<format> symbol)]
+ (and (text.starts_with? namespace symbol)
+ (text.ends_with? name symbol)))))]
[/.Tag /.tag]
[/.Attribute /.attribute]