-
-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the rest of Rust syntax behind a feature flag (off by default) #4
Comments
This would allow serde_codegen to drop its dependency on Syntex entirely. |
In a plugin I'm using to transform idents, I need to parse traits, trait impls, and type paths. This is because macros can't perform an ident => ident transformation, so instead I have specialized versions of the macro for different contexts. |
Hi! Could I work on parsing the loop expression? Maybe if I'm able to handle that one fairly easily, I can move on to others. |
Absolutely! Thanks in advance. Let me know if I can help explain anything. |
Parsing structs and enums is enough for Macros 1.1 but parsing all of Rust may be useful for other things.
Items
Expressions
Statements
Patterns
Other
The text was updated successfully, but these errors were encountered: