rust/compiler/rustc_expand
Nicholas Nethercote 3b6978196d Tweak fully_expand_fragment loop.
Control flow never gets past the end of the `ExpandResult::Retry` match
arm, due to the `span_bug` and the `continue`. Therefore, the code after
the match can only be reached from the `ExpandResult::Ready` arm.

This commit moves that code after the match into the
`ExpandResult::Ready` arm, avoiding the need for the `continue` in the
`ExpandResult::Retry` arm.
2024-05-03 09:06:26 +10:00
..
src Tweak fully_expand_fragment loop. 2024-05-03 09:06:26 +10:00
Cargo.toml Remove crossbeam-channel 2024-01-07 19:16:13 -05:00
messages.ftl Move some functions from rustc_expand to rustc_builtin_macros. 2024-04-26 09:24:33 +10:00