Let's assume you have two user defined proc_macro_attributes in the following order:
struct Test {}
#[depends_on_inner]
impl Test {
#[inner]
fn test() {
}
}
Is there any way to hand over information between these two macro executions, so that depends_on_inner knows that impl Test has a function with a #[inner] attribute?