diff --git a/src/source_file.rs b/src/source_file.rs index 052b0f9c5d6..5a9a2cbd80c 100644 --- a/src/source_file.rs +++ b/src/source_file.rs @@ -70,7 +70,7 @@ impl From<&FileName> for rustc_span::FileName { fn from(filename: &FileName) -> rustc_span::FileName { match filename { FileName::Real(path) => { - rustc_span::FileName::Real(rustc_span::RealFileName::Named(path.to_owned())) + rustc_span::FileName::Real(rustc_span::RealFileName::LocalPath(path.to_owned())) } FileName::Stdin => rustc_span::FileName::Custom("stdin".to_owned()), } diff --git a/src/syntux/session.rs b/src/syntux/session.rs index 27e7ce5cec2..870f0acfe39 100644 --- a/src/syntux/session.rs +++ b/src/syntux/session.rs @@ -65,7 +65,8 @@ fn emit_diagnostic(&mut self, db: &Diagnostic) { } if let Some(primary_span) = &db.span.primary_span() { let file_name = self.source_map.span_to_filename(*primary_span); - if let rustc_span::FileName::Real(rustc_span::RealFileName::Named(ref path)) = file_name + if let rustc_span::FileName::Real(rustc_span::RealFileName::LocalPath(ref path)) = + file_name { if self .ignore_path_set @@ -157,7 +158,7 @@ pub(crate) fn is_file_parsed(&self, path: &Path) -> bool { self.parse_sess .source_map() .get_source_file(&rustc_span::FileName::Real( - rustc_span::RealFileName::Named(path.to_path_buf()), + rustc_span::RealFileName::LocalPath(path.to_path_buf()), )) .is_some() } @@ -347,7 +348,7 @@ fn handles_fatal_parse_error_in_ignored_file() { let source = String::from(r#"extern "system" fn jni_symbol!( funcName ) ( ... ) -> {} "#); source_map.new_source_file( - SourceMapFileName::Real(RealFileName::Named(PathBuf::from("foo.rs"))), + SourceMapFileName::Real(RealFileName::LocalPath(PathBuf::from("foo.rs"))), source, ); let mut emitter = build_emitter( @@ -374,7 +375,7 @@ fn handles_recoverable_parse_error_in_ignored_file() { let source_map = Lrc::new(SourceMap::new(FilePathMapping::empty())); let source = String::from(r#"pub fn bar() { 1x; }"#); source_map.new_source_file( - SourceMapFileName::Real(RealFileName::Named(PathBuf::from("foo.rs"))), + SourceMapFileName::Real(RealFileName::LocalPath(PathBuf::from("foo.rs"))), source, ); let mut emitter = build_emitter( @@ -400,7 +401,7 @@ fn handles_recoverable_parse_error_in_non_ignored_file() { let source_map = Lrc::new(SourceMap::new(FilePathMapping::empty())); let source = String::from(r#"pub fn bar() { 1x; }"#); source_map.new_source_file( - SourceMapFileName::Real(RealFileName::Named(PathBuf::from("foo.rs"))), + SourceMapFileName::Real(RealFileName::LocalPath(PathBuf::from("foo.rs"))), source, ); let mut emitter = build_emitter( @@ -430,15 +431,15 @@ fn handles_mix_of_recoverable_parse_error() { let fatal_source = String::from(r#"extern "system" fn jni_symbol!( funcName ) ( ... ) -> {} "#); source_map.new_source_file( - SourceMapFileName::Real(RealFileName::Named(PathBuf::from("bar.rs"))), + SourceMapFileName::Real(RealFileName::LocalPath(PathBuf::from("bar.rs"))), bar_source, ); source_map.new_source_file( - SourceMapFileName::Real(RealFileName::Named(PathBuf::from("foo.rs"))), + SourceMapFileName::Real(RealFileName::LocalPath(PathBuf::from("foo.rs"))), foo_source, ); source_map.new_source_file( - SourceMapFileName::Real(RealFileName::Named(PathBuf::from("fatal.rs"))), + SourceMapFileName::Real(RealFileName::LocalPath(PathBuf::from("fatal.rs"))), fatal_source, ); let mut emitter = build_emitter(