@@ -877,9 +877,9 @@ fn check_matcher_core(
877
877
// Now `last` holds the complete set of NT tokens that could
878
878
// end the sequence before SUFFIX. Check that every one works with `suffix`.
879
879
' each_last: for token in & last. tokens {
880
- if let TokenTree :: MetaVarDecl ( _, ref name, ref frag_spec) = * token {
880
+ if let TokenTree :: MetaVarDecl ( _, name, frag_spec) = * token {
881
881
for next_token in & suffix_first. tokens {
882
- match is_in_follow ( next_token, & frag_spec. as_str ( ) ) {
882
+ match is_in_follow ( next_token, frag_spec. name ) {
883
883
IsInFollow :: Invalid ( msg, help) => {
884
884
sess. span_diagnostic
885
885
. struct_span_err ( next_token. span ( ) , & msg)
@@ -948,7 +948,7 @@ fn check_matcher_core(
948
948
949
949
fn token_can_be_followed_by_any ( tok : & quoted:: TokenTree ) -> bool {
950
950
if let quoted:: TokenTree :: MetaVarDecl ( _, _, frag_spec) = * tok {
951
- frag_can_be_followed_by_any ( & frag_spec. as_str ( ) )
951
+ frag_can_be_followed_by_any ( frag_spec. name )
952
952
} else {
953
953
// (Non NT's can always be followed by anthing in matchers.)
954
954
true
@@ -963,15 +963,15 @@ fn token_can_be_followed_by_any(tok: "ed::TokenTree) -> bool {
963
963
/// specifier which consumes at most one token tree can be followed by
964
964
/// a fragment specifier (indeed, these fragments can be followed by
965
965
/// ANYTHING without fear of future compatibility hazards).
966
- fn frag_can_be_followed_by_any ( frag : & str ) -> bool {
966
+ fn frag_can_be_followed_by_any ( frag : Symbol ) -> bool {
967
967
match frag {
968
- " item" | // always terminated by `}` or `;`
969
- " block" | // exactly one token tree
970
- " ident" | // exactly one token tree
971
- " literal" | // exactly one token tree
972
- " meta" | // exactly one token tree
973
- " lifetime" | // exactly one token tree
974
- "tt" => // exactly one token tree
968
+ sym :: item | // always terminated by `}` or `;`
969
+ sym :: block | // exactly one token tree
970
+ sym :: ident | // exactly one token tree
971
+ sym :: literal | // exactly one token tree
972
+ sym :: meta | // exactly one token tree
973
+ sym :: lifetime | // exactly one token tree
974
+ sym :: tt => // exactly one token tree
975
975
true ,
976
976
977
977
_ =>
@@ -993,7 +993,7 @@ enum IsInFollow {
993
993
/// break macros that were relying on that binary operator as a
994
994
/// separator.
995
995
// when changing this do not forget to update doc/book/macros.md!
996
- fn is_in_follow ( tok : & quoted:: TokenTree , frag : & str ) -> IsInFollow {
996
+ fn is_in_follow ( tok : & quoted:: TokenTree , frag : Symbol ) -> IsInFollow {
997
997
use quoted:: TokenTree ;
998
998
999
999
if let TokenTree :: Token ( Token { kind : token:: CloseDelim ( _) , .. } ) = * tok {
@@ -1002,17 +1002,17 @@ fn is_in_follow(tok: "ed::TokenTree, frag: &str) -> IsInFollow {
1002
1002
IsInFollow :: Yes
1003
1003
} else {
1004
1004
match frag {
1005
- " item" => {
1005
+ sym :: item => {
1006
1006
// since items *must* be followed by either a `;` or a `}`, we can
1007
1007
// accept anything after them
1008
1008
IsInFollow :: Yes
1009
1009
}
1010
- " block" => {
1010
+ sym :: block => {
1011
1011
// anything can follow block, the braces provide an easy boundary to
1012
1012
// maintain
1013
1013
IsInFollow :: Yes
1014
1014
}
1015
- " stmt" | " expr" => {
1015
+ sym :: stmt | sym :: expr => {
1016
1016
const TOKENS : & [ & str ] = & [ "`=>`" , "`,`" , "`;`" ] ;
1017
1017
match tok {
1018
1018
TokenTree :: Token ( token) => match token. kind {
@@ -1022,7 +1022,7 @@ fn is_in_follow(tok: "ed::TokenTree, frag: &str) -> IsInFollow {
1022
1022
_ => IsInFollow :: No ( TOKENS ) ,
1023
1023
}
1024
1024
}
1025
- " pat" => {
1025
+ sym :: pat => {
1026
1026
const TOKENS : & [ & str ] = & [ "`=>`" , "`,`" , "`=`" , "`|`" , "`if`" , "`in`" ] ;
1027
1027
match tok {
1028
1028
TokenTree :: Token ( token) => match token. kind {
@@ -1033,7 +1033,7 @@ fn is_in_follow(tok: "ed::TokenTree, frag: &str) -> IsInFollow {
1033
1033
_ => IsInFollow :: No ( TOKENS ) ,
1034
1034
}
1035
1035
}
1036
- " path" | "ty" => {
1036
+ sym :: path | sym :: ty => {
1037
1037
const TOKENS : & [ & str ] = & [
1038
1038
"`{`" , "`[`" , "`=>`" , "`,`" , "`>`" , "`=`" , "`:`" , "`;`" , "`|`" , "`as`" ,
1039
1039
"`where`" ,
@@ -1061,20 +1061,20 @@ fn is_in_follow(tok: "ed::TokenTree, frag: &str) -> IsInFollow {
1061
1061
_ => IsInFollow :: No ( TOKENS ) ,
1062
1062
}
1063
1063
}
1064
- " ident" | " lifetime" => {
1064
+ sym :: ident | sym :: lifetime => {
1065
1065
// being a single token, idents and lifetimes are harmless
1066
1066
IsInFollow :: Yes
1067
1067
}
1068
- " literal" => {
1068
+ sym :: literal => {
1069
1069
// literals may be of a single token, or two tokens (negative numbers)
1070
1070
IsInFollow :: Yes
1071
1071
}
1072
- " meta" | "tt" => {
1072
+ sym :: meta | sym :: tt => {
1073
1073
// being either a single token or a delimited sequence, tt is
1074
1074
// harmless
1075
1075
IsInFollow :: Yes
1076
1076
}
1077
- " vis" => {
1077
+ sym :: vis => {
1078
1078
// Explicitly disallow `priv`, on the off chance it comes back.
1079
1079
const TOKENS : & [ & str ] = & [ "`,`" , "an ident" , "a type" ] ;
1080
1080
match tok {
@@ -1099,7 +1099,7 @@ fn is_in_follow(tok: "ed::TokenTree, frag: &str) -> IsInFollow {
1099
1099
_ => IsInFollow :: No ( TOKENS ) ,
1100
1100
}
1101
1101
}
1102
- "" => IsInFollow :: Yes , // kw::Invalid
1102
+ kw :: Invalid => IsInFollow :: Yes ,
1103
1103
_ => IsInFollow :: Invalid (
1104
1104
format ! ( "invalid fragment specifier `{}`" , frag) ,
1105
1105
VALID_FRAGMENT_NAMES_MSG ,
0 commit comments