Uh oh!
There was an error while loading. Please reload this page.
Make ast::Lifetime contain ast::Name instead of ast::ident - #8016
Conversation
There was a problem hiding this comment.
Wow, nice work! Could you put a note here, e.g.
// NOTE: Cannot use quote_item due to stage0 and #7743, revert after a snapshot
There was a problem hiding this comment.
Great, I just want to add something like FIXME, but don't know how to express that uniformly.
There was a problem hiding this comment.
How about this:
// FIXME: Cannot use lifetimes in quote_item due to stage0 and #7743, revert after a snapshot
There was a problem hiding this comment.
That's fine, but it has to be a NOTE, or you have to file an issue, and write FIXME #nnnn ... (which is fine too). make tidy doesn't allow FIXME without an issue number.
emberian
commented
Jul 26, 2013
@lilac in the future, when you update a PR, do |
lilac
commented
Jul 27, 2013
@cmr OK, thanks! |
huonw
commented
Jul 30, 2013
jbclements
commented
Jul 31, 2013
I'm interested, because afaict there's not actually any shared code between this and #8103 . FWIW, @graydon tells me that he reduced the failure to this code: Unfortunately, I don't have a Windows machine to reproduce this failure. If you ( @lilac ) do, perhaps you can see whether this code triggers the failure on your PR, too? Best, John |
lilac
commented
Aug 1, 2013
@jbclements Sorry, I don't have a Windows machine neither. And I am quite surprised that two unrelated pieces of code result in the same error. Maybe because the macro usage and my manual AST tree building both call some underlying AST related codes? |
lilac
commented
Aug 5, 2013
r? @huonw |
huonw
commented
Aug 5, 2013
Hm, @lilac, this doesn't merge cleanly, could you rebase on top of master? |
lilac
commented
Aug 5, 2013
@huonw Rebase done. Do I need to close this PR and create a new PR after rebase? |
huonw
commented
Aug 5, 2013
Nope, no need for a new PR, just force pushing the updated commits to this PR is fine. |
lilac
commented
Aug 5, 2013
r? @huonw |
lilac
commented
Aug 5, 2013
@bors: retry |
huonw
commented
Aug 5, 2013
(You need to be a reviewer to We've accumulated a long chain of commits, could you squash them into the first one since it's all a single feature? |
lilac
commented
Aug 5, 2013
catamorphism
commented
Aug 17, 2013
@lilac Needs a rebase. |
catamorphism
commented
Aug 21, 2013
Closing due to lack of activity. Please reopen if you have time to rebase it! |
jbclements
commented
Sep 12, 2013
my patch went through, so this one might as well. I'll re-open it when I have time to do some baby-sitting. |
Add more descriptive help info for `needless_question_mark` closesrust-lang#8016 changelog: [`needless_question_mark`] help suggestion now explains what should be changed
8016: More Chalk adaptations r=flodiebold a=flodiebold - rename a bunch of fields - use `chalk_ir::FnSig` Co-authored-by: Florian Diebold <flodiebold@gmail.com>
Fixes#7743. To make the compiler happy, I rewrite a use case of the "quote_item" macro. After we get a compiler snapshot that includes this change, the manual ast construction can be reverted back to using "quote_item".