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

Pretty print parens around casts on the LHS of </<< #45784

Merged
merged 4 commits into from
Nov 7, 2017

Conversation

harpocrates
Copy link
Contributor

When pretty printing a cast expression occuring on the LHS of a < or << expression, we should add parens around the cast. Otherwise, the </<< gets interpreted as the beginning of the generics for the type on the RHS of the cast.

Consider:

$ cat parens_cast.rs
macro_rules! negative {
    ($e:expr) => { $e < 0 }
}

fn main() {
    negative!(1 as i32);
}

Before this PR, the output of the following is not valid Rust:

$ rustc -Z unstable-options --pretty=expanded parens_cast.rs
#![feature(prelude_import)]
#![no_std]
#[prelude_import]
use std::prelude::v1::*;
#[macro_use]
extern crate std as std;
macro_rules! negative(( $ e : expr ) => { $ e < 0 });

fn main() { 1 as i32 < 0; }

After this PR, the output of the following is valid Rust:

$ rustc -Z unstable-options --pretty=expanded parens_cast.rs
#![feature(prelude_import)]
#![no_std]
#[prelude_import]
use std::prelude::v1::*;
#[macro_use]
extern crate std as std;
macro_rules! negative(( $ e : expr ) => { $ e < 0 });

fn main() { (1 as i32) < 0; }

I've gone through several README/wiki style documents but I'm still not sure where to test this though. I'm not even sure if this sort of thing is tested...

When pretty printing a cast expression occuring on the LHS of a '<'
or '<<' expression, we should add parens around the cast. Otherwise,
the '<'/'<<' gets interpreted as the beginning of the generics for
the type on the RHS of the cast.
@rust-highfive
Copy link
Contributor

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @nikomatsakis (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.

@kennytm kennytm added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Nov 5, 2017
@kennytm
Copy link
Member

kennytm commented Nov 5, 2017

I'm not even sure if this sort of thing is tested...

You could add a test case to src/test/pretty. Refer to src/test/pretty/issue-4264.{rs,pp} as an example.

@harpocrates
Copy link
Contributor Author

You could add a test case to src/test/pretty. Refer to src/test/pretty/issue-4264.{rs,pp} as an example.

I'm confused.

I thought that those tests do (roughly) the following: parse, pretty-print, re-parse, and check that the first and last of these are the same. However, this issue occurs only when synthetically (either through a macro or by using rustc's internals) creating ASTs and then pretty-printing them...

Help?

@kennytm
Copy link
Member

kennytm commented Nov 5, 2017

@harpocrates No problem.

If you check issue-4264.rs you'll find the following lines:

// pretty-compare-only
// pretty-mode:hir,typed
// pp-exact:issue-4264.pp

The middle line instructs the test runner to pass --unpretty hir,typed when running rustc. So in your case, you'd want to include the following in the *.rs file:

// pretty-compare-only
// pretty-mode:expanded
// pp-exact:******.pp

and then copy the --unpretty=expanded output to the *.pp file.

Copy link
Member

@kennytm kennytm left a comment

Choose a reason for hiding this comment

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

LGTM. Some minor nits.

@@ -0,0 +1,24 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
Copy link
Member

Choose a reason for hiding this comment

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

2017

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Good point! :)

// pretty-mode:expanded
// pp-exact:cast-lt.pp

// #4264 fixed-length vector types
Copy link
Member

Choose a reason for hiding this comment

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

Remove this comment.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Derp. Fixed now.

@kennytm
Copy link
Member

kennytm commented Nov 6, 2017

Thanks.

@bors r+

@bors
Copy link
Collaborator

bors commented Nov 6, 2017

📌 Commit 3761c0d has been approved by kennytm

@kennytm kennytm added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Nov 6, 2017
@kennytm
Copy link
Member

kennytm commented Nov 7, 2017

@bors r-

// pretty-mode:expanded
// pp-exact:cast-lt.pp

// #4264 fixed-length vector types
Copy link
Member

Choose a reason for hiding this comment

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

You haven't removed this from the *.pp file...

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'm so sorry! I'll be more careful next time... :S

@kennytm kennytm added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Nov 7, 2017
@kennytm
Copy link
Member

kennytm commented Nov 7, 2017

@bors r+

@bors
Copy link
Collaborator

bors commented Nov 7, 2017

📌 Commit aa38a1e has been approved by kennytm

@kennytm kennytm added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Nov 7, 2017
kennytm added a commit to kennytm/rust that referenced this pull request Nov 7, 2017
…t, r=kennytm

Pretty print parens around casts on the LHS of `<`/`<<`

When pretty printing a cast expression occuring on the LHS of a `<` or `<<` expression, we should add parens around the cast. Otherwise, the `<`/`<<` gets interpreted as the beginning of the generics for the type on the RHS of the cast.

Consider:

    $ cat parens_cast.rs
    macro_rules! negative {
        ($e:expr) => { $e < 0 }
    }

    fn main() {
        negative!(1 as i32);
    }

Before this PR, the output of the following is not valid Rust:

    $ rustc -Z unstable-options --pretty=expanded parens_cast.rs
    #![feature(prelude_import)]
    #![no_std]
    #[prelude_import]
    use std::prelude::v1::*;
    #[macro_use]
    extern crate std as std;
    macro_rules! negative(( $ e : expr ) => { $ e < 0 });

    fn main() { 1 as i32 < 0; }

After this PR, the output of the following is valid Rust:

    $ rustc -Z unstable-options --pretty=expanded parens_cast.rs
    #![feature(prelude_import)]
    #![no_std]
    #[prelude_import]
    use std::prelude::v1::*;
    #[macro_use]
    extern crate std as std;
    macro_rules! negative(( $ e : expr ) => { $ e < 0 });

    fn main() { (1 as i32) < 0; }

I've gone through several README/wiki style documents but I'm still not sure where to test this though. I'm not even sure if this sort of thing is tested...
bors added a commit that referenced this pull request Nov 7, 2017
Rollup of 9 pull requests

- Successful merges: #45470, #45588, #45682, #45714, #45751, #45764, #45778, #45782, #45784
- Failed merges:
@bors bors merged commit aa38a1e into rust-lang:master Nov 7, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants