refactor(derive): Clarify parse is really about attributes

This commit is contained in:
Ed Page 2022-08-31 21:22:22 -05:00
parent d9844002e5
commit d8524b5ad1
3 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
// MIT/Apache 2.0 license.
use crate::{
parse::*,
attr::*,
utils::{inner_type, is_simple_ty, process_doc_comment, Sp, Ty},
};

View file

@ -22,10 +22,10 @@ use proc_macro::TokenStream;
use proc_macro_error::proc_macro_error;
use syn::{parse_macro_input, DeriveInput};
mod attr;
mod derives;
mod dummies;
mod item;
mod parse;
mod utils;
/// Generates the `ValueEnum` impl.