-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
hir: remove LoweredNodeId #60305
hir: remove LoweredNodeId #60305
Conversation
r? @eddyb (rust_highfive has picked a reviewer for you, use r? to override) |
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.
This applies generally in various places in the file.
b97eb16
to
c95fd35
Compare
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.
Some more cases... more generally, search for let hir_id = self.lower_node_id(
c95fd35
to
83d6c40
Compare
@Centril This time I think I even got some you haven't noticed yet 😉 . |
@ljedrz Yea; nice work :) -- I think you caught 'em all. |
83d6c40
to
d536ec4
Compare
@bors r+ |
📌 Commit d536ec4 has been approved by |
hir: remove LoweredNodeId It seems that we no longer need it, because nowadays we just want the `HirId` most of the time.
Rollup of 9 pull requests Successful merges: - #59946 (Fix equivalent string in escape_default docs) - #60256 (Option::flatten) - #60305 (hir: remove LoweredNodeId) - #60334 (Stabilized vectored IO) - #60353 (Add test not to forget resolved ICE) - #60356 (Stabilize str::as_mut_ptr) - #60358 (Clarify the short explanation of E0207) - #60359 (resolve: Consider erroneous imports used to avoid duplicate diagnostics) - #60360 (Add test case for labeled break in const assignment) Failed merges: r? @ghost
☔ The latest upstream changes (presumably #60377) made this pull request unmergeable. Please resolve the merge conflicts. |
It seems that we no longer need it, because nowadays we just want the
HirId
most of the time.