-
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
Leading pipes in patterns need to be preserved in the AST #76182
Labels
A-macros
Area: All kinds of macros (custom derive, macro_rules!, proc macros, ..)
A-pretty
Area: Pretty printing (including `-Z unpretty`)
A-proc-macros
Area: Procedural macros
C-bug
Category: This is a bug.
Comments
Extra info (but it boils down to what @Aaron1011 said): Using fn main ()
{
match () { | () => () }
let () = 42; // I was interested in seeing the error message being correctly spanned
} I get the following log:
Rendered diff: https://www.textcompare.org/index.html?id=5f4d8b98086a55001745f791 |
This applies to all trailing separators in theory (except that the separator is leading rather than trailing in this case), but in other cases the difference is fixed up by fuzzy comparison in |
Aaron1011
added a commit
to Aaron1011/rust
that referenced
this issue
Sep 1, 2020
Fixes rust-lang#76182 Previously, we did not preserve the precense of a leading vert ('|') when parsing a pattern. This lead to an instance of rust-lang#43081 when invoking a proc-macro, since the pretty-printed tokens would be missing the '|' present in the captured tokens.
Dylan-DPC-zz
pushed a commit
to Dylan-DPC-zz/rust
that referenced
this issue
Sep 12, 2020
…chenkov Ignore `|` and `+` tokens during proc-macro pretty-print check Fixes rust-lang#76182 This is an alternative to PR rust-lang#76188 These tokens are not preserved in the AST in certain cases (e.g. a leading `|` in a pattern or a trailing `+` in a trait bound). This PR ignores them entirely during the pretty-print/reparse check to avoid spuriously using the re-parsed tokenstream.
Dylan-DPC-zz
pushed a commit
to Dylan-DPC-zz/rust
that referenced
this issue
Sep 12, 2020
…chenkov Ignore `|` and `+` tokens during proc-macro pretty-print check Fixes rust-lang#76182 This is an alternative to PR rust-lang#76188 These tokens are not preserved in the AST in certain cases (e.g. a leading `|` in a pattern or a trailing `+` in a trait bound). This PR ignores them entirely during the pretty-print/reparse check to avoid spuriously using the re-parsed tokenstream.
Dylan-DPC-zz
pushed a commit
to Dylan-DPC-zz/rust
that referenced
this issue
Sep 12, 2020
…chenkov Ignore `|` and `+` tokens during proc-macro pretty-print check Fixes rust-lang#76182 This is an alternative to PR rust-lang#76188 These tokens are not preserved in the AST in certain cases (e.g. a leading `|` in a pattern or a trailing `+` in a trait bound). This PR ignores them entirely during the pretty-print/reparse check to avoid spuriously using the re-parsed tokenstream.
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Sep 13, 2020
…enkov Ignore `|` and `+` tokens during proc-macro pretty-print check Fixes rust-lang#76182 This is an alternative to PR rust-lang#76188 These tokens are not preserved in the AST in certain cases (e.g. a leading `|` in a pattern or a trailing `+` in a trait bound). This PR ignores them entirely during the pretty-print/reparse check to avoid spuriously using the re-parsed tokenstream.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-macros
Area: All kinds of macros (custom derive, macro_rules!, proc macros, ..)
A-pretty
Area: Pretty printing (including `-Z unpretty`)
A-proc-macros
Area: Procedural macros
C-bug
Category: This is a bug.
The following code:
is currently pretty-printed as:
If this occurs in a macro invocation, it leads to an instance of #43081
The text was updated successfully, but these errors were encountered: