Skip to content

Commit 2c5d370

Browse files
committed
Clarify SyntaxExtensionKind::LegacyDerive.
1 parent 872631d commit 2c5d370

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

compiler/rustc_expand/src/base.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -676,8 +676,13 @@ pub enum SyntaxExtensionKind {
676676

677677
/// A token-based derive macro.
678678
Derive(
679-
/// An expander with signature TokenStream -> TokenStream (not yet).
679+
/// An expander with signature TokenStream -> TokenStream.
680680
/// The produced TokenSteam is appended to the input TokenSteam.
681+
///
682+
/// FIXME: The text above describes how this should work. Currently it
683+
/// is handled identically to `LegacyDerive`. It should be migrated to
684+
/// a token-based representation like `Bang` and `Attr`, instead of
685+
/// using `MultiItemModifier`.
681686
Box<dyn MultiItemModifier + sync::Sync + sync::Send>,
682687
),
683688

0 commit comments

Comments
 (0)