Rename CustomDerive to ProcMacro

It handles fn-like macros too, and will handle attribute macros in the
future
This commit is contained in:
Jonas Schievink 2020-09-18 15:37:31 +02:00
parent 700a3d5d75
commit 9dc0afe854
6 changed files with 8 additions and 8 deletions

View file

@ -246,7 +246,7 @@ pub enum MacroDefKind {
// FIXME: maybe just Builtin and rename BuiltinFnLikeExpander to BuiltinExpander
BuiltInDerive(BuiltinDeriveExpander),
BuiltInEager(EagerExpander),
CustomDerive(ProcMacroExpander),
ProcMacro(ProcMacroExpander),
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]