aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/macro/syntax/common/definition.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/macro/syntax/common/definition.lux')
-rw-r--r--stdlib/source/test/lux/macro/syntax/common/definition.lux24
1 files changed, 12 insertions, 12 deletions
diff --git a/stdlib/source/test/lux/macro/syntax/common/definition.lux b/stdlib/source/test/lux/macro/syntax/common/definition.lux
index 18af3edaa..937f5319a 100644
--- a/stdlib/source/test/lux/macro/syntax/common/definition.lux
+++ b/stdlib/source/test/lux/macro/syntax/common/definition.lux
@@ -25,7 +25,7 @@
["#//" /// #_
["#." code]]])
-(def: random-annotations
+(def: random_annotations
(Random Annotations)
(let [name (random.and (random.ascii/alpha 5)
(random.ascii/alpha 5))]
@@ -37,7 +37,7 @@
(random.ascii/alpha 5)
(random.or $//check.random
$////code.random)
- ..random-annotations
+ ..random_annotations
random.bit
))
@@ -47,15 +47,15 @@
#.mode #.Build}
#.source [location.dummy 0 ""]
#.location location.dummy
- #.current-module #.None
+ #.current_module #.None
#.modules (list)
#.scopes (list)
- #.type-context {#.ex-counter 0
- #.var-counter 0
- #.var-bindings (list)}
+ #.type_context {#.ex_counter 0
+ #.var_counter 0
+ #.var_bindings (list)}
#.expected #.None
#.seed 0
- #.scope-type-vars (list)
+ #.scope_type_vars (list)
#.extensions []
#.host []})
@@ -71,7 +71,7 @@
[expected ..random
type $////code.random
- untyped-value $////code.random]
+ untyped_value $////code.random]
($_ _.and
(_.cover [/.write /.parser]
(case (<code>.run (/.parser compiler)
@@ -82,7 +82,7 @@
(#try.Success actual)
(\ /.equivalence = expected actual)))
(_.cover [/.typed]
- (let [expected (set@ #/.value (#.Left [type untyped-value]) expected)]
+ (let [expected (set@ #/.value (#.Left [type untyped_value]) expected)]
(case (<code>.run (/.typed compiler)
(list (/.write expected)))
(#try.Failure error)
@@ -90,12 +90,12 @@
(#try.Success actual)
(\ /.equivalence = expected actual))))
- (_.cover [/.lacks-type!]
- (let [expected (set@ #/.value (#.Right untyped-value) expected)]
+ (_.cover [/.lacks_type!]
+ (let [expected (set@ #/.value (#.Right untyped_value) expected)]
(case (<code>.run (/.typed compiler)
(list (/.write expected)))
(#try.Failure error)
- (exception.match? /.lacks-type! error)
+ (exception.match? /.lacks_type! error)
(#try.Success actual)
false)))