From 06701a8dafa13a161fe552dae119e9282c71bd0a Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 8 Aug 2019 16:58:06 +0200 Subject: [PATCH] reduce visibility --- src/libsyntax/source_map.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libsyntax/source_map.rs b/src/libsyntax/source_map.rs index f83c1dbf7eed0..4e29c77c89e42 100644 --- a/src/libsyntax/source_map.rs +++ b/src/libsyntax/source_map.rs @@ -125,12 +125,12 @@ impl StableSourceFileId { #[derive(Default)] pub(super) struct SourceMapFiles { - pub(super) source_files: Vec>, + source_files: Vec>, stable_id_to_source_file: FxHashMap> } pub struct SourceMap { - pub(super) files: Lock, + files: Lock, file_loader: Box, // This is used to apply the file path remapping as specified via // --remap-path-prefix to all SourceFiles allocated within this SourceMap.