Rename `default_handler` as `default_dcx`.

This commit is contained in:
Nicholas Nethercote 2023-12-18 09:30:06 +11:00
parent e13b5c8efb
commit e97d353359
1 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ impl From<Color> for ColorConfig {
}
}
fn default_handler(
fn default_dcx(
source_map: Lrc<SourceMap>,
ignore_path_set: Lrc<IgnorePathSet>,
can_reset: Lrc<AtomicBool>,
@ -159,7 +159,7 @@ impl ParseSess {
let source_map = Lrc::new(SourceMap::new(FilePathMapping::empty()));
let can_reset_errors = Lrc::new(AtomicBool::new(false));
let handler = default_handler(
let handler = default_dcx(
Lrc::clone(&source_map),
Lrc::clone(&ignore_path_set),
Lrc::clone(&can_reset_errors),