@@ -21,8 +21,9 @@ use crate::early_buffered_lints::BufferedEarlyLintId;
21
21
use crate :: source_map:: Spanned ;
22
22
use crate :: edition:: { ALL_EDITIONS , Edition } ;
23
23
use crate :: visit:: { self , FnKind , Visitor } ;
24
- use crate :: parse:: ParseSess ;
24
+ use crate :: parse:: { token , ParseSess } ;
25
25
use crate :: symbol:: Symbol ;
26
+ use crate :: tokenstream:: TokenTree ;
26
27
27
28
use errors:: { DiagnosticBuilder , Handler } ;
28
29
use rustc_data_structures:: fx:: FxHashMap ;
@@ -431,9 +432,6 @@ declare_features! (
431
432
// Added for testing E0705; perma-unstable.
432
433
( active, test_2018_feature, "1.31.0" , Some ( 0 ) , Some ( Edition :: Edition2018 ) ) ,
433
434
434
- // support for arbitrary delimited token streams in non-macro attributes
435
- ( active, unrestricted_attribute_tokens, "1.30.0" , Some ( 55208 ) , None ) ,
436
-
437
435
// Allows unsized rvalues at arguments and parameters.
438
436
( active, unsized_locals, "1.30.0" , Some ( 48055 ) , None ) ,
439
437
@@ -700,6 +698,8 @@ declare_features! (
700
698
( accepted, cfg_target_vendor, "1.33.0" , Some ( 29718 ) , None ) ,
701
699
// `extern crate self as foo;` puts local crate root into extern prelude under name `foo`.
702
700
( accepted, extern_crate_self, "1.34.0" , Some ( 56409 ) , None ) ,
701
+ // support for arbitrary delimited token streams in non-macro attributes
702
+ ( accepted, unrestricted_attribute_tokens, "1.34.0" , Some ( 55208 ) , None ) ,
703
703
) ;
704
704
705
705
// If you change this, please modify `src/doc/unstable-book` as well. You must
@@ -1660,13 +1660,9 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
1660
1660
1661
1661
match BUILTIN_ATTRIBUTES . iter ( ) . find ( |( name, ..) | attr. path == name) {
1662
1662
Some ( & ( name, _, template, _) ) => self . check_builtin_attribute ( attr, name, template) ,
1663
- None => if !self . context . features . unrestricted_attribute_tokens {
1664
- // Unfortunately, `parse_meta` cannot be called speculatively
1665
- // because it can report errors by itself, so we have to call it
1666
- // only if the feature is disabled.
1667
- if let Err ( mut err) = attr. parse_meta ( self . context . parse_sess ) {
1668
- err. help ( "try enabling `#![feature(unrestricted_attribute_tokens)]`" ) . emit ( )
1669
- }
1663
+ None => if let Some ( TokenTree :: Token ( _, token:: Eq ) ) = attr. tokens . trees ( ) . next ( ) {
1664
+ // All key-value attributes are restricted to meta-item syntax.
1665
+ attr. parse_meta ( self . context . parse_sess ) . map_err ( |mut err| err. emit ( ) ) . ok ( ) ;
1670
1666
}
1671
1667
}
1672
1668
}
0 commit comments