From dfc08ff2c6580bbeb3951b223e0332546ba3b0d9 Mon Sep 17 00:00:00 2001 From: Greg Brown Date: Thu, 6 May 2021 19:40:59 +0100 Subject: Introduce lambda expressions. --- chomp-macro/tests/regex.rs | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 chomp-macro/tests/regex.rs (limited to 'chomp-macro/tests/regex.rs') 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(); -} -- cgit v1.2.3