-
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
Adapted trans::common::{block, fn_ctxt, scope_info}
to new naming convention.
#7848
Adapted trans::common::{block, fn_ctxt, scope_info}
to new naming convention.
#7848
Conversation
Rebased and fixed merge conflicts. |
Looks like this needs a rebase again :P |
Done. Probably not the last time. But the merge conflicts are rather easy to resolve. |
@michaelwoerister, needs another rebase! |
Done. |
Is this test failing my fault? It seems to have gone unresponsive. |
Aaaaaaaaand rebase required again. The downside of big cleanups :P |
Well, that's what I signed up for here |
Well, this one is entirely my fault. I forgot to stage the changes before doing the |
@jdm Please re-approve. |
The following types are renamed: ```rust block_ => Block block => @mut Block fn_ctx_ => FunctionContext fn_ctx => @mut FunctionContext scope_info => ScopeInfo ``` I also tried to convert instances of `@mut` to `&mut` or `&` but a lot of them are blocked by issue #6268, so I left it for some time later.
\o/ |
Fix doc heading of `transmute_num_to_bytes` changelog: none
The following types are renamed:
I also tried to convert instances of
@mut
to&mut
or&
but a lot of them are blocked by issue #6268, so I left it for some time later.