Closed
Description
Lines 1079 to 1088 in 668a34e
enum Name {
/// The name of the file that the source came from. Source that doesn't
/// originate from files has names between angle brackets by convention
/// (e.g., `<anon>`).
Normal(FileName),
/// FileName modified by `--remap-path-prefix`.
Remapped(FileName),
}
pub struct SourceFile {
pub name: Name,
/// The unmapped path of the file that the source came from.
/// Set to `None` if the `SourceFile` was imported from an external crate.
pub unmapped_path: Option<FileName>,
...
}