]> git.lizzy.rs Git - rust.git/commitdiff
syntax: gensym the injected std/core extern crates in the Rust 2018 edition.
authorEduard-Mihai Burtescu <edy.burt@gmail.com>
Fri, 10 Aug 2018 13:01:32 +0000 (16:01 +0300)
committerEduard-Mihai Burtescu <edy.burt@gmail.com>
Tue, 14 Aug 2018 04:06:46 +0000 (07:06 +0300)
src/librustc_driver/driver.rs
src/libsyntax/std_inject.rs
src/test/pretty/cast-lt.pp
src/test/pretty/issue-4264.pp

index b6e03b66510e50965fa724b37f14e35c961c116d..ee98cc6cf927e1d31c9212340f75dd09d9e8f476 100644 (file)
@@ -865,7 +865,7 @@ pub fn phase_2_configure_and_expand_inner<'a, 'b: 'a, F>(
 
     krate = time(sess, "crate injection", || {
         let alt_std_name = sess.opts.alt_std_name.as_ref().map(|s| &**s);
-        syntax::std_inject::maybe_inject_crates_ref(krate, alt_std_name)
+        syntax::std_inject::maybe_inject_crates_ref(krate, alt_std_name, sess.edition())
     });
 
     let mut addl_plugins = Some(addl_plugins);
index 68121d42b69c64698bb4dd07a2684b85fb25b075..626a610017d42949d26dd19df1f69d5d93f8b085 100644 (file)
@@ -11,6 +11,8 @@
 use ast;
 use attr;
 use std::cell::Cell;
+use std::iter;
+use edition::Edition;
 use ext::hygiene::{Mark, SyntaxContext};
 use symbol::{Symbol, keywords};
 use syntax_pos::{DUMMY_SP, Span};
@@ -43,7 +45,13 @@ pub fn injected_crate_name() -> Option<&'static str> {
     static INJECTED_CRATE_NAME: Cell<Option<&'static str>> = Cell::new(None);
 }
 
-pub fn maybe_inject_crates_ref(mut krate: ast::Crate, alt_std_name: Option<&str>) -> ast::Crate {
+pub fn maybe_inject_crates_ref(
+    mut krate: ast::Crate,
+    alt_std_name: Option<&str>,
+    edition: Edition,
+) -> ast::Crate {
+    let rust_2018 = edition >= Edition::Edition2018;
+
     // the first name in this list is the crate name of the crate with the prelude
     let names: &[&str] = if attr::contains_name(&krate.attrs, "no_core") {
         return krate;
@@ -58,14 +66,27 @@ pub fn maybe_inject_crates_ref(mut krate: ast::Crate, alt_std_name: Option<&str>
     };
 
     // .rev() to preserve ordering above in combination with insert(0, ...)
-    for name in names.iter().rev() {
+    let alt_std_name = alt_std_name.map(Symbol::intern);
+    for orig_name in names.iter().rev() {
+        let orig_name = Symbol::intern(orig_name);
+        let mut rename = orig_name;
+        // HACK(eddyb) gensym the injected crates on the Rust 2018 edition,
+        // so they don't accidentally interfere with the new import paths.
+        if rust_2018 {
+            rename = orig_name.gensymed();
+        }
+        let orig_name = if rename != orig_name {
+            Some(orig_name)
+        } else {
+            None
+        };
         krate.module.items.insert(0, P(ast::Item {
             attrs: vec![attr::mk_attr_outer(DUMMY_SP,
                                             attr::mk_attr_id(),
                                             attr::mk_word_item(ast::Ident::from_str("macro_use")))],
             vis: dummy_spanned(ast::VisibilityKind::Inherited),
-            node: ast::ItemKind::ExternCrate(alt_std_name.map(Symbol::intern)),
-            ident: ast::Ident::from_str(name),
+            node: ast::ItemKind::ExternCrate(alt_std_name.or(orig_name)),
+            ident: ast::Ident::with_empty_ctxt(rename),
             id: ast::DUMMY_NODE_ID,
             span: DUMMY_SP,
             tokens: None,
@@ -91,9 +112,11 @@ pub fn maybe_inject_crates_ref(mut krate: ast::Crate, alt_std_name: Option<&str>
         vis: respan(span.shrink_to_lo(), ast::VisibilityKind::Inherited),
         node: ast::ItemKind::Use(P(ast::UseTree {
             prefix: ast::Path {
-                segments: [name, "prelude", "v1"].into_iter().map(|name| {
-                    ast::PathSegment::from_ident(ast::Ident::from_str(name))
-                }).collect(),
+                segments: iter::once(keywords::CrateRoot.ident())
+                    .chain(
+                        [name, "prelude", "v1"].iter().cloned()
+                            .map(ast::Ident::from_str)
+                    ).map(ast::PathSegment::from_ident).collect(),
                 span,
             },
             kind: ast::UseTreeKind::Glob,
index f1b4b4f5a0c8a05d16a6e2fe12fcb8db95577a51..b8d920754ad7922846dcb55caa79f80fa2f7d1b7 100644 (file)
@@ -1,7 +1,7 @@
 #![feature(prelude_import)]
 #![no_std]
 #[prelude_import]
-use std::prelude::v1::*;
+use ::std::prelude::v1::*;
 #[macro_use]
 extern crate std;
 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
index a4380d9212fdf1e596fc25c7b72a611701bffd53..5f42b86c82a81e3c3984675c28a10c6431c81b7a 100644 (file)
@@ -1,5 +1,5 @@
 #[prelude_import]
-use std::prelude::v1::*;
+use ::std::prelude::v1::*;
 #[macro_use]
 extern crate std;
 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT