1
Fork 0

Reformat using the new identifier sorting from rustfmt

This commit is contained in:
Michael Goulet 2024-09-22 19:05:04 -04:00
parent 1173204b36
commit c682aa162b
1455 changed files with 7152 additions and 8384 deletions

View file

@ -75,16 +75,16 @@ use std::collections::hash_map::Entry::{Occupied, Vacant};
use std::fmt::Display;
use std::rc::Rc;
pub(crate) use NamedMatch::*;
pub(crate) use ParseResult::*;
use rustc_ast::token::{self, DocComment, NonterminalKind, Token};
use rustc_ast_pretty::pprust;
use rustc_data_structures::fx::FxHashMap;
use rustc_errors::ErrorGuaranteed;
use rustc_lint_defs::pluralize;
use rustc_parse::parser::{ParseNtResult, Parser};
use rustc_span::symbol::{Ident, MacroRulesNormalizedIdent};
use rustc_span::Span;
pub(crate) use NamedMatch::*;
pub(crate) use ParseResult::*;
use rustc_span::symbol::{Ident, MacroRulesNormalizedIdent};
use crate::mbe::macro_rules::Tracker;
use crate::mbe::{KleeneOp, TokenTree};