reduce visibility
This commit is contained in:
parent
2628f579f6
commit
06701a8daf
1 changed files with 2 additions and 2 deletions
|
@ -125,12 +125,12 @@ impl StableSourceFileId {
|
||||||
|
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
pub(super) struct SourceMapFiles {
|
pub(super) struct SourceMapFiles {
|
||||||
pub(super) source_files: Vec<Lrc<SourceFile>>,
|
source_files: Vec<Lrc<SourceFile>>,
|
||||||
stable_id_to_source_file: FxHashMap<StableSourceFileId, Lrc<SourceFile>>
|
stable_id_to_source_file: FxHashMap<StableSourceFileId, Lrc<SourceFile>>
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct SourceMap {
|
pub struct SourceMap {
|
||||||
pub(super) files: Lock<SourceMapFiles>,
|
files: Lock<SourceMapFiles>,
|
||||||
file_loader: Box<dyn FileLoader + Sync + Send>,
|
file_loader: Box<dyn FileLoader + Sync + Send>,
|
||||||
// This is used to apply the file path remapping as specified via
|
// This is used to apply the file path remapping as specified via
|
||||||
// --remap-path-prefix to all SourceFiles allocated within this SourceMap.
|
// --remap-path-prefix to all SourceFiles allocated within this SourceMap.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue