mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
Rename syntax_pos to rustc_span in source code
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
use crate::llvm::debuginfo::{DIArray, DIBuilder, DIDescriptor, DIScope};
|
||||
use rustc_codegen_ssa::traits::*;
|
||||
|
||||
use syntax_pos::Span;
|
||||
use rustc_span::Span;
|
||||
|
||||
pub fn is_node_local_to_unit(cx: &CodegenCx<'_, '_>, def_id: DefId) -> bool {
|
||||
// The is_local_to_unit flag indicates whether a function is local to the
|
||||
@@ -32,8 +32,8 @@ pub fn create_DIArray(builder: &DIBuilder<'ll>, arr: &[Option<&'ll DIDescriptor>
|
||||
};
|
||||
}
|
||||
|
||||
/// Returns syntax_pos::Loc corresponding to the beginning of the span
|
||||
pub fn span_start(cx: &CodegenCx<'_, '_>, span: Span) -> syntax_pos::Loc {
|
||||
/// Returns rustc_span::Loc corresponding to the beginning of the span
|
||||
pub fn span_start(cx: &CodegenCx<'_, '_>, span: Span) -> rustc_span::Loc {
|
||||
cx.sess().source_map().lookup_char_pos(span.lo())
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user