Skip to content

Commit

Permalink
reduce visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
matklad committed Aug 8, 2019
1 parent 2628f57 commit 06701a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libsyntax/source_map.rs
Expand Up @@ -125,12 +125,12 @@ impl StableSourceFileId {

#[derive(Default)]
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>>
}

pub struct SourceMap {
pub(super) files: Lock<SourceMapFiles>,
files: Lock<SourceMapFiles>,
file_loader: Box<dyn FileLoader + Sync + Send>,
// This is used to apply the file path remapping as specified via
// --remap-path-prefix to all SourceFiles allocated within this SourceMap.
Expand Down

0 comments on commit 06701a8

Please sign in to comment.