diff options
author | Greg Brown <gmb60@cam.ac.uk> | 2021-05-06 19:40:59 +0100 |
---|---|---|
committer | Greg Brown <gmb60@cam.ac.uk> | 2021-05-06 19:40:59 +0100 |
commit | dfc08ff2c6580bbeb3951b223e0332546ba3b0d9 (patch) | |
tree | 60597dd9492b9c2dfa10ea610289f143dd3e41b7 /chomp-macro/tests/regex.rs | |
parent | ef485d6f3e4df6e1a424ba3797388fa0bba6eb2e (diff) |
Introduce lambda expressions.
Diffstat (limited to 'chomp-macro/tests/regex.rs')
-rw-r--r-- | chomp-macro/tests/regex.rs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/chomp-macro/tests/regex.rs b/chomp-macro/tests/regex.rs deleted file mode 100644 index 1e831b4..0000000 --- a/chomp-macro/tests/regex.rs +++ /dev/null @@ -1,27 +0,0 @@ -chomp_macro::nibble! { - let opt(x) = _ | x; - let plus(x) = [plus](x . opt(plus)); - let star(x) = [star](opt(x . star)); - - match plus("a") . star("b"); -} - -#[test] -fn regex_a() { - Ast::parse_str("a").unwrap(); -} - -#[test] -fn regex_ab() { - Ast::parse_str("ab").unwrap(); -} - -#[test] -fn regex_aa() { - Ast::parse_str("aa").unwrap(); -} - -#[test] -fn regex_aaaabbb() { - Ast::parse_str("aaaabbb").unwrap(); -} |