Skip to content

Commit 09d073a

Browse files
committed
stabilize extern_crate_self
1 parent aea9f0a commit 09d073a

10 files changed

+49
-28
lines changed

src/librustc_resolve/build_reduced_graph.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ use syntax::ext::base::{MacroKind, SyntaxExtension};
3030
use syntax::ext::base::Determinacy::Undetermined;
3131
use syntax::ext::hygiene::Mark;
3232
use syntax::ext::tt::macro_rules;
33-
use syntax::feature_gate::{is_builtin_attr, emit_feature_err, GateIssue};
33+
use syntax::feature_gate::is_builtin_attr;
3434
use syntax::parse::token::{self, Token};
3535
use syntax::std_inject::injected_crate_name;
3636
use syntax::symbol::keywords;
@@ -349,10 +349,6 @@ impl<'a> Resolver<'a> {
349349
.emit();
350350
return;
351351
} else if orig_name == Some(keywords::SelfLower.name()) {
352-
if !self.session.features_untracked().extern_crate_self {
353-
emit_feature_err(&self.session.parse_sess, "extern_crate_self", item.span,
354-
GateIssue::Language, "`extern crate self` is unstable");
355-
}
356352
self.graph_root
357353
} else {
358354
let crate_id = self.crate_loader.process_extern_crate(item, &self.definitions);

src/libsyntax/feature_gate.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -453,9 +453,6 @@ declare_features! (
453453
// Adds `reason` and `expect` lint attributes.
454454
(active, lint_reasons, "1.31.0", Some(54503), None),
455455

456-
// `extern crate self as foo;` puts local crate root into extern prelude under name `foo`.
457-
(active, extern_crate_self, "1.31.0", Some(56409), None),
458-
459456
// Allows paths to enum variants on type aliases.
460457
(active, type_alias_enum_variants, "1.31.0", Some(49683), None),
461458

@@ -685,6 +682,8 @@ declare_features! (
685682
(accepted, uniform_paths, "1.32.0", Some(53130), None),
686683
// Allows `cfg(target_vendor = "...")`.
687684
(accepted, cfg_target_vendor, "1.33.0", Some(29718), None),
685+
// `extern crate self as foo;` puts local crate root into extern prelude under name `foo`.
686+
(accepted, extern_crate_self, "1.34.0", Some(56409), None),
688687
);
689688

690689
// If you change this, please modify `src/doc/unstable-book` as well. You must

src/test/ui/feature-gates/feature-gate-extern_crate_self.rs

-3
This file was deleted.

src/test/ui/feature-gates/feature-gate-extern_crate_self.stderr

-11
This file was deleted.

src/test/ui/imports/extern-crate-self-fail.rs src/test/ui/imports/extern-crate-self/extern-crate-self-fail.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(extern_crate_self)]
2-
31
extern crate self; //~ ERROR `extern crate self;` requires renaming
42

53
#[macro_use] //~ ERROR `macro_use` is not supported on `extern crate self`

src/test/ui/imports/extern-crate-self-fail.stderr src/test/ui/imports/extern-crate-self/extern-crate-self-fail.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
error: `extern crate self;` requires renaming
2-
--> $DIR/extern-crate-self-fail.rs:3:1
2+
--> $DIR/extern-crate-self-fail.rs:1:1
33
|
44
LL | extern crate self; //~ ERROR `extern crate self;` requires renaming
55
| ^^^^^^^^^^^^^^^^^^ help: try: `extern crate self as name;`
66

77
error: `macro_use` is not supported on `extern crate self`
8-
--> $DIR/extern-crate-self-fail.rs:5:1
8+
--> $DIR/extern-crate-self-fail.rs:3:1
99
|
1010
LL | #[macro_use] //~ ERROR `macro_use` is not supported on `extern crate self`
1111
| ^^^^^^^^^^^^
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// run-pass
2+
3+
// Test that a macro can correctly expand the alias
4+
// in an `extern crate self as ALIAS` item.
5+
6+
fn the_answer() -> usize { 42 }
7+
8+
macro_rules! alias_self {
9+
($alias:ident) => { extern crate self as $alias; }
10+
}
11+
12+
alias_self!(the_alias);
13+
14+
fn main() {
15+
assert_eq!(the_alias::the_answer(), 42);
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// compile-pass
2+
3+
// Test that `extern crate self;` is accepted
4+
// syntactically as an item for use in a macro.
5+
6+
macro_rules! accept_item { ($x:item) => {} }
7+
8+
accept_item! {
9+
extern crate self;
10+
}
11+
12+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// run-pass
2+
3+
// Test that a macro can correctly expand `self` in
4+
// an `extern crate self as ALIAS` item.
5+
6+
fn the_answer() -> usize { 42 }
7+
8+
macro_rules! extern_something {
9+
($alias:ident) => { extern crate $alias as the_alias; }
10+
}
11+
12+
extern_something!(self);
13+
14+
fn main() {
15+
assert_eq!(the_alias::the_answer(), 42);
16+
}

src/test/ui/imports/extern-crate-self-pass.rs src/test/ui/imports/extern-crate-self/extern-crate-self-pass.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// compile-pass
22

3-
#![feature(extern_crate_self)]
4-
53
extern crate self as foo;
64

75
struct S;

0 commit comments

Comments
 (0)