We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c4dacd commit 9251af3Copy full SHA for 9251af3
src/libsyntax/parse/mod.rs
@@ -48,7 +48,7 @@ pub struct ParseSess {
48
pub config: CrateConfig,
49
pub missing_fragment_specifiers: RefCell<HashSet<Span>>,
50
/// Used to determine and report recursive mod inclusions
51
- included_mod_stack: RefCell<Vec<PathBuf>>,
+ included_mod_stack: Lock<Vec<PathBuf>>, // FIXME: Should be a temporary thread local thing
52
code_map: Rc<CodeMap>,
53
}
54
0 commit comments