-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Expose the line and column fields from the proc_macro::LineColumn struct #46690
Conversation
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
r? @jseyfried |
Thanks! @bors r+ |
📌 Commit 0ccf1af has been approved by |
⌛ Testing commit 0ccf1af with merge 0462c855c9d4df145fe944b5d23b77450a8be4ee... |
@bors treeclosed=2 Some crosstool link is dead, closing the tree for a moment for investigation. |
💔 Test failed - status-travis |
@bors retry — http://crosstool-ng.org was down. |
@bors rollup |
Expose the line and column fields from the proc_macro::LineColumn struct Right now the `LineColumn` struct is pretty useless because the fields are private. This patch just marks the fields as public, which seems like the easiest solution.
Right now the
LineColumn
struct is pretty useless because the fields are private.This patch just marks the fields as public, which seems like the easiest solution.