Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/mbe/src/tests/expand.rs')
-rw-r--r--crates/mbe/src/tests/expand.rs229
1 files changed, 0 insertions, 229 deletions
diff --git a/crates/mbe/src/tests/expand.rs b/crates/mbe/src/tests/expand.rs
index 7becaa6658..c08788cda1 100644
--- a/crates/mbe/src/tests/expand.rs
+++ b/crates/mbe/src/tests/expand.rs
@@ -72,235 +72,6 @@ macro_rules! foobar {
}
#[test]
-fn test_convert_tt() {
- parse_macro(r#"
-macro_rules! impl_froms {
- ($e:ident: $($v:ident),*) => {
- $(
- impl From<$v> for $e {
- fn from(it: $v) -> $e {
- $e::$v(it)
- }
- }
- )*
- }
-}
-"#)
- .assert_expand_tt(
- "impl_froms!(TokenTree: Leaf, Subtree);",
- "impl From <Leaf > for TokenTree {fn from (it : Leaf) -> TokenTree {TokenTree ::Leaf (it)}} \
- impl From <Subtree > for TokenTree {fn from (it : Subtree) -> TokenTree {TokenTree ::Subtree (it)}}"
- );
-}
-
-#[test]
-fn test_convert_tt2() {
- parse_macro(
- r#"
-macro_rules! impl_froms {
- ($e:ident: $($v:ident),*) => {
- $(
- impl From<$v> for $e {
- fn from(it: $v) -> $e {
- $e::$v(it)
- }
- }
- )*
- }
-}
-"#,
- )
- .assert_expand(
- "impl_froms!(TokenTree: Leaf, Subtree);",
- r#"
-SUBTREE $
- IDENT impl 20
- IDENT From 21
- PUNCH < [joint] 22
- IDENT Leaf 53
- PUNCH > [alone] 25
- IDENT for 26
- IDENT TokenTree 51
- SUBTREE {} 29
- IDENT fn 30
- IDENT from 31
- SUBTREE () 32
- IDENT it 33
- PUNCH : [alone] 34
- IDENT Leaf 53
- PUNCH - [joint] 37
- PUNCH > [alone] 38
- IDENT TokenTree 51
- SUBTREE {} 41
- IDENT TokenTree 51
- PUNCH : [joint] 44
- PUNCH : [joint] 45
- IDENT Leaf 53
- SUBTREE () 48
- IDENT it 49
- IDENT impl 20
- IDENT From 21
- PUNCH < [joint] 22
- IDENT Subtree 55
- PUNCH > [alone] 25
- IDENT for 26
- IDENT TokenTree 51
- SUBTREE {} 29
- IDENT fn 30
- IDENT from 31
- SUBTREE () 32
- IDENT it 33
- PUNCH : [alone] 34
- IDENT Subtree 55
- PUNCH - [joint] 37
- PUNCH > [alone] 38
- IDENT TokenTree 51
- SUBTREE {} 41
- IDENT TokenTree 51
- PUNCH : [joint] 44
- PUNCH : [joint] 45
- IDENT Subtree 55
- SUBTREE () 48
- IDENT it 49
-"#,
- );
-}
-
-#[test]
-fn test_expr_order() {
- let expanded = parse_macro(
- r#"
- macro_rules! foo {
- ($ i:expr) => {
- fn bar() { $ i * 2; }
- }
- }
-"#,
- )
- .expand_items("foo! { 1 + 1}");
-
- let dump = format!("{:#?}", expanded);
- assert_eq_text!(
- dump.trim()
- );
-}
-
-#[test]
-fn test_match_group_pattern_with_multiple_defs() {
- parse_macro(
- r#"
- macro_rules! foo {
- ($ ($ i:ident),*) => ( struct Bar { $ (
- fn $ i {}
- )*} );
- }
-"#,
- )
- .assert_expand_items("foo! { foo, bar }", "struct Bar {fn foo {} fn bar {}}");
-}
-
-#[test]
-fn test_match_group_pattern_with_multiple_statement() {
- parse_macro(
- r#"
- macro_rules! foo {
- ($ ($ i:ident),*) => ( fn baz { $ (
- $ i ();
- )*} );
- }
-"#,
- )
- .assert_expand_items("foo! { foo, bar }", "fn baz {foo () ; bar () ;}");
-}
-
-#[test]
-fn test_match_group_pattern_with_multiple_statement_without_semi() {
- parse_macro(
- r#"
- macro_rules! foo {
- ($ ($ i:ident),*) => ( fn baz { $ (
- $i()
- );*} );
- }
-"#,
- )
- .assert_expand_items("foo! { foo, bar }", "fn baz {foo () ;bar ()}");
-}
-
-#[test]
-fn test_match_group_empty_fixed_token() {
- parse_macro(
- r#"
- macro_rules! foo {
- ($ ($ i:ident)* #abc) => ( fn baz { $ (
- $ i ();
- )*} );
- }
-"#,
- )
- .assert_expand_items("foo! {#abc}", "fn baz {}");
-}
-
-#[test]
-fn test_match_group_in_subtree() {
- parse_macro(
- r#"
- macro_rules! foo {
- (fn $name:ident {$($i:ident)*} ) => ( fn $name() { $ (
- $ i ();
- )*} );
- }"#,
- )
- .assert_expand_items("foo! {fn baz {a b} }", "fn baz () {a () ; b () ;}");
-}
-
-#[test]
-fn test_match_group_with_multichar_sep() {
- parse_macro(
- r#"
- macro_rules! foo {
- (fn $name:ident {$($i:literal)*} ) => ( fn $name() -> bool { $($i)&&*} );
- }"#,
- )
- .assert_expand_items("foo! (fn baz {true true} );", "fn baz () -> bool {true &&true}");
-}
-
-#[test]
-fn test_match_group_with_multichar_sep2() {
- parse_macro(
- r#"
- macro_rules! foo {
- (fn $name:ident {$($i:literal)&&*} ) => ( fn $name() -> bool { $($i)&&*} );
- }"#,
- )
- .assert_expand_items("foo! (fn baz {true && true} );", "fn baz () -> bool {true &&true}");
-}
-
-#[test]
fn test_match_group_zero_match() {
parse_macro(
r#"