-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Allow macros to expand to multiple items #4375
Comments
Fixing this mainly will entail editing fold.rs so that one item can fold to multiple items. The odd thing is that there are a number of places in the AST where exactly one item is accepted; I haven't investigated what's up with them. |
This is sorely missed. Here is a use case where I'd love to have it (more on the way):
The alternative (as you can imagine) is frighteningly verbose. |
agreed that expanding into multiple items would be very important/useful. Another alternative would be to have an explicit "item-sequence" AST node, that gets flattened at some point during compilation. |
Jeaye suggests using |
Nominating this for a milestone, as per bjz's plea. |
i was looking for this feature too whilst writing something to auto generate a struct alongside some sort of serialization assist. (initially I tried to declare a struct plus a default 'to_str()' that formated it in a JSON-esque manner). |
I've been looking into this; @sanxiyn 's suggestion seems to be the simplest way to get this done. Still work left to do but generally the approach is to have The goofy hack alternative would be to literally inject a module into the macro, |
The enum is stuck inside of an extra module due to rust-lang/rust#4375.
Hello. I've just started exploring @jedestep 's comment by changing MRAny to Right now I'm waiting for |
I haven't had time yet to explore the MRAny redefinition. I thought I'd point out a relevant pull request, #9673, which disallows multi-item expansions explicitly, instead of implicitly dropping after the first. |
c144752 may fix some cases, e.g.: But I think this issue is not fully resolved, at least with 0.11: macro_rules! do_bar(
() => (
let x = 1u;
if x == 1 {return}
)
)
pub fn main() {
// error: macro expansion ignores token `if` and any following
do_bar!();
} |
@ntrel they are statements/expressions, not items (in this context an item is a top-level thing like You can work around it in most cases by wrapping the whole contents a pair of macro_rules! do_bar(
() => ({ // extra { here.
let x = 1u;
if x == 1 {return}
})
) |
@huonw Great, thanks. |
https://gist.github.com/4480389
The macro here is expanding to only the first statement in its definition. According to pauls, this is because "the mac system is currently only able to expand a macro to a single item", and that this should be fixed. Make it so that a macro instead expands to all the statements in its definition.
The text was updated successfully, but these errors were encountered: