We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5170d2 commit fc359aaCopy full SHA for fc359aa
compiler/rustc_expand/src/mbe/transcribe.rs
@@ -215,10 +215,7 @@ pub(super) fn transcribe<'a>(
215
// Find the matched nonterminal from the macro invocation, and use it to replace
216
// the meta-var.
217
let ident = MacroRulesNormalizedIdent::new(original_ident);
218
- let x = original_ident.normalize_to_macro_rules().span;
219
- info!(?interp, ?x, ?original_ident.span);
220
if let Some(cur_matched) = lookup_cur_matched(ident, interp, &repeats) {
221
- info!(?cur_matched);
222
match cur_matched {
223
MatchedTokenTree(tt) => {
224
// `tt`s are emitted into the output stream directly as "raw tokens",
0 commit comments