2020-04-27 12:56:11 -05:00
|
|
|
use rustc_ast::MetaItem;
|
2019-12-29 08:23:55 -06:00
|
|
|
use rustc_expand::base::ExtCtxt;
|
2019-11-29 19:34:18 -06:00
|
|
|
use rustc_feature::AttributeTemplate;
|
2019-12-22 16:42:04 -06:00
|
|
|
use rustc_parse::validate_attr;
|
2019-12-31 11:15:40 -06:00
|
|
|
use rustc_span::Symbol;
|
2019-10-08 07:15:26 -05:00
|
|
|
|
|
|
|
pub fn check_builtin_macro_attribute(ecx: &ExtCtxt<'_>, meta_item: &MetaItem, name: Symbol) {
|
|
|
|
// All the built-in macro attributes are "words" at the moment.
|
2019-12-30 12:38:43 -06:00
|
|
|
let template = AttributeTemplate { word: true, ..Default::default() };
|
2019-10-08 07:15:26 -05:00
|
|
|
let attr = ecx.attribute(meta_item.clone());
|
2020-07-29 20:27:50 -05:00
|
|
|
validate_attr::check_builtin_attribute(&ecx.sess.parse_sess, &attr, name, template);
|
2019-10-08 07:15:26 -05:00
|
|
|
}
|