1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
#![allow(clippy::needless_lifetimes, clippy::uninlined_format_args)]
#[macro_use]
mod macros;
use proc_macro2::{Delimiter, Group, TokenStream, TokenTree};
use quote::{quote, ToTokens as _};
use syn::parse::Parser;
use syn::punctuated::Punctuated;
use syn::{parse_quote, token, Item, Pat, PatTuple, Stmt, Token};
#[test]
fn test_pat_ident() {
match Pat::parse_single.parse2(quote!(self)).unwrap() {
Pat::Ident(_) => (),
value => panic!("expected PatIdent, got {:?}", value),
}
}
#[test]
fn test_pat_path() {
match Pat::parse_single.parse2(quote!(self::CONST)).unwrap() {
Pat::Path(_) => (),
value => panic!("expected PatPath, got {:?}", value),
}
}
#[test]
fn test_leading_vert() {
// https://github.com/rust-lang/rust/blob/1.43.0/src/test/ui/or-patterns/remove-leading-vert.rs
syn::parse_str::<Item>("fn f() {}").unwrap();
syn::parse_str::<Item>("fn fun1(| A: E) {}").unwrap_err();
syn::parse_str::<Item>("fn fun2(|| A: E) {}").unwrap_err();
syn::parse_str::<Stmt>("let | () = ();").unwrap_err();
syn::parse_str::<Stmt>("let (| A): E;").unwrap();
syn::parse_str::<Stmt>("let (|| A): (E);").unwrap_err();
syn::parse_str::<Stmt>("let (| A,): (E,);").unwrap();
syn::parse_str::<Stmt>("let [| A]: [E; 1];").unwrap();
syn::parse_str::<Stmt>("let [|| A]: [E; 1];").unwrap_err();
syn::parse_str::<Stmt>("let TS(| A): TS;").unwrap();
syn::parse_str::<Stmt>("let TS(|| A): TS;").unwrap_err();
syn::parse_str::<Stmt>("let NS { f: | A }: NS;").unwrap();
syn::parse_str::<Stmt>("let NS { f: || A }: NS;").unwrap_err();
}
#[test]
fn test_group() {
let group = Group::new(Delimiter::None, quote!(Some(_)));
let tokens = TokenStream::from_iter([TokenTree::Group(group)]);
let pat = Pat::parse_single.parse2(tokens).unwrap();
snapshot!(pat, @r#"
Pat::TupleStruct {
path: Path {
segments: [
PathSegment {
ident: "Some",
},
],
},
elems: [
Pat::Wild,
],
}
"#);
}
#[test]
fn test_ranges() {
Pat::parse_single.parse_str("..").unwrap();
Pat::parse_single.parse_str("..hi").unwrap();
Pat::parse_single.parse_str("lo..").unwrap();
Pat::parse_single.parse_str("lo..hi").unwrap();
Pat::parse_single.parse_str("..=").unwrap_err();
Pat::parse_single.parse_str("..=hi").unwrap();
Pat::parse_single.parse_str("lo..=").unwrap_err();
Pat::parse_single.parse_str("lo..=hi").unwrap();
Pat::parse_single.parse_str("...").unwrap_err();
Pat::parse_single.parse_str("...hi").unwrap_err();
Pat::parse_single.parse_str("lo...").unwrap_err();
Pat::parse_single.parse_str("lo...hi").unwrap();
Pat::parse_single.parse_str("[lo..]").unwrap_err();
Pat::parse_single.parse_str("[..=hi]").unwrap_err();
Pat::parse_single.parse_str("[(lo..)]").unwrap();
Pat::parse_single.parse_str("[(..=hi)]").unwrap();
Pat::parse_single.parse_str("[lo..=hi]").unwrap();
Pat::parse_single.parse_str("[_, lo.., _]").unwrap_err();
Pat::parse_single.parse_str("[_, ..=hi, _]").unwrap_err();
Pat::parse_single.parse_str("[_, (lo..), _]").unwrap();
Pat::parse_single.parse_str("[_, (..=hi), _]").unwrap();
Pat::parse_single.parse_str("[_, lo..=hi, _]").unwrap();
}
#[test]
fn test_tuple_comma() {
let mut expr = PatTuple {
attrs: Vec::new(),
paren_token: token::Paren::default(),
elems: Punctuated::new(),
};
snapshot!(expr.to_token_stream() as Pat, @"Pat::Tuple");
expr.elems.push_value(parse_quote!(_));
// Must not parse to Pat::Paren
snapshot!(expr.to_token_stream() as Pat, @r#"
Pat::Tuple {
elems: [
Pat::Wild,
Token![,],
],
}
"#);
expr.elems.push_punct(<Token![,]>::default());
snapshot!(expr.to_token_stream() as Pat, @r#"
Pat::Tuple {
elems: [
Pat::Wild,
Token![,],
],
}
"#);
expr.elems.push_value(parse_quote!(_));
snapshot!(expr.to_token_stream() as Pat, @r#"
Pat::Tuple {
elems: [
Pat::Wild,
Token![,],
Pat::Wild,
],
}
"#);
expr.elems.push_punct(<Token![,]>::default());
snapshot!(expr.to_token_stream() as Pat, @r#"
Pat::Tuple {
elems: [
Pat::Wild,
Token![,],
Pat::Wild,
Token![,],
],
}
"#);
}
|