Skip to content
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

Make some fatal lexer errors recoverable #33199

Merged
merged 1 commit into from
Apr 28, 2016

Conversation

mitaa
Copy link
Contributor

@mitaa mitaa commented Apr 25, 2016

I've kept the changes to a minimum since I'm not really sure if this approach is a acceptable.

fixes #12834

cc @nrc

@rust-highfive
Copy link
Contributor

r? @sfackler

(rust_highfive has picked a reviewer for you, use r? to override)

@sfackler sfackler assigned nrc and unassigned sfackler Apr 25, 2016
@@ -27,26 +27,47 @@ pub use ext::tt::transcribe::{TtReader, new_tt_reader, new_tt_reader_with_doc_fl
pub mod comments;
mod unicode_chars;

pub type TokenAndSpanResult = Result<TokenAndSpan, ()>;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't seem worth making a type for, it only saves a few chars.

@nrc
Copy link
Member

nrc commented Apr 26, 2016

There are some small things to change inline, r+ with those fixed.

@mitaa mitaa force-pushed the tokenize-responsibly branch from ed6c1f9 to d420225 Compare April 27, 2016 04:24
@mitaa
Copy link
Contributor Author

mitaa commented Apr 27, 2016

I tried using a closure, but that didn't really work out.
These methods take &mut self, so the closure can't capture self which leads to passing self as argument of the closure making the trait not object safe. (mentioning Self in the signature or requiring that Self: Sized for converting to a trait object)

Passing just the result to unwrap_or_abort works, but the borrow checker isn't smart enough yet for self.unwrap_or_abort(self.try_real_token()), requiring a temporary.

I've also added a note to the rustdoc warning.

@mitaa mitaa force-pushed the tokenize-responsibly branch 2 times, most recently from 6cf22db to 38b45dd Compare April 27, 2016 04:38
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

Copy link
Member

@nrc nrc Apr 27, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add a comment to this test explaining what is being tested please?

@nrc
Copy link
Member

nrc commented Apr 27, 2016

@mitaa thanks for the changes and explanation, I have one more very minor request (sorry I missed it the first time round), then r+ for reals.

@mitaa mitaa force-pushed the tokenize-responsibly branch from 38b45dd to 6887202 Compare April 27, 2016 18:48
@mitaa
Copy link
Contributor Author

mitaa commented Apr 27, 2016

(updated)

@nrc
Copy link
Member

nrc commented Apr 27, 2016

@bors: r+

@bors
Copy link
Collaborator

bors commented Apr 27, 2016

📌 Commit 6887202 has been approved by nrc

@bors
Copy link
Collaborator

bors commented Apr 27, 2016

⌛ Testing commit 6887202 with merge cda7c1c...

bors added a commit that referenced this pull request Apr 27, 2016
Make some fatal lexer errors recoverable

I've kept the changes to a minimum since I'm not really sure if this approach is a acceptable.

fixes #12834

cc @nrc
@bors bors merged commit 6887202 into rust-lang:master Apr 28, 2016
@mitaa mitaa deleted the tokenize-responsibly branch April 28, 2016 00:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

rustdoc fails unpleasantly when it can't tokenise a code block
6 participants