Do not encode gensymed imports in metadata

This commit is contained in:
Vadim Petrochenkov 2019-03-19 21:32:17 +03:00
parent 7a4df3b53d
commit 30d5dc9a0a
5 changed files with 20 additions and 4 deletions

View File

@ -303,7 +303,7 @@ fn build_reduced_graph_for_use_tree(
}
// Empty groups `a::b::{}` are turned into synthetic `self` imports
// `a::b::c::{self as _}`, so that their prefixes are correctly
// `a::b::c::{self as __dummy}`, so that their prefixes are correctly
// resolved and checked for privacy/stability/etc.
if items.is_empty() && !empty_for_self(&prefix) {
let new_span = prefix[prefix.len() - 1].ident.span;
@ -312,7 +312,7 @@ fn build_reduced_graph_for_use_tree(
Ident::new(keywords::SelfLower.name(), new_span)
),
kind: ast::UseTreeKind::Simple(
Some(Ident::new(keywords::Underscore.name().gensymed(), new_span)),
Some(Ident::new(Name::gensym("__dummy"), new_span)),
ast::DUMMY_NODE_ID,
ast::DUMMY_NODE_ID,
),

View File

@ -1295,9 +1295,11 @@ fn finalize_resolutions_in(&mut self, module: Module<'b>) {
None => continue,
};
// Filter away "empty import canaries" and ambiguous imports.
// Filter away ambiguous and gensymed imports. Gensymed imports
// (e.g. implicitly injected `std`) cannot be properly encoded in metadata,
// so they can cause name conflict errors downstream.
let is_good_import = binding.is_import() && !binding.is_ambiguity() &&
binding.vis != ty::Visibility::Invisible;
!(ident.name.is_gensymed() && ident.name != "_");
if is_good_import || binding.is_macro_def() {
let def = binding.def();
if def != Def::Err {

View File

@ -179,6 +179,10 @@ pub fn gensymed(self) -> Self {
with_interner(|interner| interner.gensymed(self))
}
pub fn is_gensymed(self) -> bool {
with_interner(|interner| interner.is_gensymed(self))
}
pub fn as_str(self) -> LocalInternedString {
with_interner(|interner| unsafe {
LocalInternedString {

View File

@ -0,0 +1,3 @@
// edition:2018
mod std {}

View File

@ -0,0 +1,7 @@
// compile-pass
// edition:2018
// aux-build:gensymed.rs
extern crate gensymed;
fn main() {}