rustc-ap-syntax 643.0.0

Automatically published version of the package `syntax` in the rust-lang/rust repository from commit dc4242d9052a42cdf329c3a2430d02a3b3d415cb The publishing script for this crate lives at: https://github.com/alexcrichton/rustc-auto-publish
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Definitions shared by macros / syntax extensions and e.g. librustc.

use crate::ast::Attribute;
use rustc_span::symbol::sym;

pub mod allocator;

pub fn is_proc_macro_attr(attr: &Attribute) -> bool {
    [sym::proc_macro, sym::proc_macro_attribute, sym::proc_macro_derive]
        .iter()
        .any(|kind| attr.check_name(*kind))
}