-
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
Better tokentree pretty printer #39079
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @pnkfelix (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
src/libsyntax/print/pprust.rs
Outdated
match *tk { | ||
parse::token::DocComment(..) => { | ||
hardbreak(&mut self.s) | ||
self.print_tts(unsafe{::std::slice::from_raw_parts(tt as *const _, 1)}); // Unsafe block to convert ref to single item slice ref without cloning |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this allowed and is there a other way to do this?
src/libsyntax/print/pprust.rs
Outdated
hardbreak(&mut self.s) | ||
/// Forwards to print_tts | ||
pub fn print_tt(&mut self, tt: &ast::TokenTree) -> io::Result<()> { | ||
self.print_tts(unsafe{::std::slice::from_raw_parts(tt as *const _, 1)}); // Unsafe block to convert ref to single item slice ref without cloning |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this allowed and is there a other way to do this?
What is going on here while compiling stage1?
|
/cc @nrc @rust-lang/compiler |
src/libsyntax/print/pprust.rs
Outdated
word(&mut self.s, &token_to_string(token))?; | ||
match (token, tts_iter.peek()){ | ||
(&parse::token::DocComment(..), _) => hardbreak(&mut self.s)?, // ///abc | ||
// ^^^--- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm pretty sure this comment is not what you wanted...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Forgot to fix indentation :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm ... pretty sure we don't approve PR's with merge commits in them. So you probably need to clean up your revision history; it may suffice to just rebase.
Also, I'm not yet sure what this is doing, because I don't remember what the token-tree printer was, what it used to look like, whether it was good/bad, et cetera. I say this mostly as a way of saying "I'm giving feedback on relatively minor points, but you should not interpret that as giving any indication about my feelings on the PR as a whole." |
It is used in error mesages when for example a proc macro outputs |
Pre-existing, but it seems like it'd be good to have some tests of this, no? |
Will add them when i rebase. |
5daf971
to
757ee29
Compare
Messed up a bit with rebasing. will have to do the fix build cycle from before again :( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Few questions
src/libsyntax/print/pprust.rs
Outdated
for token in program.chars() | ||
{ | ||
match token { | ||
'+' => accumulator += 1 , '-' => accumulator -= 1 , '*' => accumulator *= 2 , '/' => accumulator /= 2 , _ => {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What should I do here to fix the tidy error? Can't put a newline because I would have another string then.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ignored it
src/libsyntax/print/pprust.rs
Outdated
} | ||
} | ||
// Unsafe block to convert ref to single item slice ref without cloning | ||
self.print_tts(unsafe{::std::slice::from_raw_parts(tt as *const _, 1)}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this allowed and is there a other way to do this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is worth using unsafe
.
I would just clone the token tree (i.e. self.print_tts(&[tt.clone()])
) -- it isn't a deep clone, just a copy plus an Rc
ref-count update. You could also refactor print_tts
to take an Iterator<Item=&TokenTree>
.
Build fails due to bug in this tt pretty printer. |
I had a break which I meant to break out of the match not the loop 🤦. This meant skipping a great part of the thread_local macro. |
Accidentally added a nul byte. |
Why do the tests fail? |
ad4eb97
to
f60ed6f
Compare
Rebased |
space(&mut self.s)?; | ||
word(&mut self.s, ")")?; | ||
if let Some(ref tk) = seq.separator { | ||
word(&mut self.s, &token_to_string(tk))?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there no way to print a single token? I guess the same is a problem above.
word(&mut self.s, ";")?; | ||
hardbreak(&mut self.s)?; | ||
} else { | ||
word(&mut self.s, &token_to_string(token))?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sad. I guess it's pre-existing, though.
I have no suggestions about the bug other than "comment out the special cases and see if that still fails". |
@eddyb I can't reproduce the travis error on local mac osx. Only run-fail/assert-macro-explicit.rs fails due to a added space. |
Are the location of stringify! spaces and newlines (semi)guaranteed. If so this is a breaking change. |
@bjorn3 Alright, you can still sort of abuse Travis to test it for you. I'd suggest pushing a single commit that comments out all the special cases but leaves your own code for the default cases. |
📌 Commit cc4eb99 has been approved by |
⌛ Testing commit cc4eb99 with merge ded091d... |
@bors: retry
|
⌛ Testing commit cc4eb99 with merge cbf842f... |
💔 Test failed - status-appveyor |
@pnkfelix test passes. |
Squashed
|
@bors r+ |
📌 Commit 0409508 has been approved by |
⌛ Testing commit 0409508 with merge a62accf... |
💔 Test failed - status-travis |
I think i will make a script to update the failing pretty print tests:
|
@bjorn3 travis says tidy checks are failling. |
src/libsyntax/print/pprust.rs
Outdated
'+' => accumulator += 1 , '-' => accumulator -= 1 , '*' => accumulator *= 2 , '/' => accumulator /= 2 , _ => {} | ||
match token | ||
{ | ||
\'+\' => accumulator += 1 , \'-\' => accumulator -= 1 , \'*\' => accumulator *= 2 , \'/\' => accumulator /= 2 , _ => {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two interesting things here:
{
should never start a new line before it, always after- it gets trickier sometimes thought (
}
and;
come to be mind) - the whole reason there's a
pp.rs
is for automating breaks - but I'm not sure the algorithm is appropriate for Rust or bug-free
- it gets trickier sometimes thought (
,
should never have a space before it, always after
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont really understand print::pp to be honest. Documentation would be really appreciated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Who does? shrug
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found docs at the Printer struct. Opened #39557 with a few doc improvements.
☔ The latest upstream changes (presumably #39419) made this pull request unmergeable. Please resolve the merge conflicts. |
@bjorn3 are you going to be able to address the problems on this PR? (From what I can tell, Travis was never satisfied with it...?) Or should I close it to clean up the queue? |
If I want to retry this in the future I will make a new pr. |
The example at the homepage now print like this when parsed as tokentrees: