Skip to content

Commit 045f8f6

Browse files
committed
rustc: Stabilize the proc_macro feature
This commit stabilizes the `proc_macro` and `proc_macro_lib` features in the compiler to stabilize the "Macros 1.1" feature of the language. Many more details can be found on the tracking issue, #35900. Closes #35900
1 parent 917e5ba commit 045f8f6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+13
-188
lines changed

src/libproc_macro/lib.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
//! Currently the primary use of this crate is to provide the ability to define
1616
//! new custom derive modes through `#[proc_macro_derive]`.
1717
//!
18-
//! Added recently as part of [RFC 1681] this crate is currently *unstable* and
19-
//! requires the `#![feature(proc_macro_lib)]` directive to use.
18+
//! Added recently as part of [RFC 1681] this crate is stable as of Rust 1.15.0.
2019
//!
2120
//! [RFC 1681]: https://github.com/rust-lang/rfcs/blob/master/text/1681-macros-1.1.md
2221
//!
@@ -27,7 +26,7 @@
2726
//! area for macro authors is stabilized.
2827
2928
#![crate_name = "proc_macro"]
30-
#![unstable(feature = "proc_macro_lib", issue = "27812")]
29+
#![stable(feature = "proc_macro_lib", since = "1.15.0")]
3130
#![crate_type = "rlib"]
3231
#![crate_type = "dylib"]
3332
#![cfg_attr(not(stage0), deny(warnings))]
@@ -55,12 +54,14 @@ use syntax::ptr::P;
5554
///
5655
/// The API of this type is intentionally bare-bones, but it'll be expanded over
5756
/// time!
57+
#[stable(feature = "proc_macro_lib", since = "1.15.0")]
5858
pub struct TokenStream {
5959
inner: Vec<P<ast::Item>>,
6060
}
6161

6262
/// Error returned from `TokenStream::from_str`.
6363
#[derive(Debug)]
64+
#[stable(feature = "proc_macro_lib", since = "1.15.0")]
6465
pub struct LexError {
6566
_inner: (),
6667
}
@@ -131,6 +132,7 @@ pub mod __internal {
131132
}
132133
}
133134

135+
#[stable(feature = "proc_macro_lib", since = "1.15.0")]
134136
impl FromStr for TokenStream {
135137
type Err = LexError;
136138

@@ -154,6 +156,7 @@ impl FromStr for TokenStream {
154156
}
155157
}
156158

159+
#[stable(feature = "proc_macro_lib", since = "1.15.0")]
157160
impl fmt::Display for TokenStream {
158161
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
159162
for item in self.inner.iter() {

src/librustc_driver/driver.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -716,8 +716,7 @@ pub fn phase_2_configure_and_expand<F>(sess: &Session,
716716
is_proc_macro_crate,
717717
is_test_crate,
718718
num_crate_types,
719-
sess.diagnostic(),
720-
&sess.features.borrow())
719+
sess.diagnostic())
721720
});
722721
}
723722

src/librustc_metadata/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#![feature(conservative_impl_trait)]
2222
#![feature(core_intrinsics)]
2323
#![feature(proc_macro_internals)]
24-
#![feature(proc_macro_lib)]
2524
#![feature(quote)]
2625
#![feature(rustc_diagnostic_macros)]
2726
#![feature(rustc_private)]

src/libsyntax/ext/expand.rs

-1
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,6 @@ impl<'feat> ExpansionConfig<'feat> {
926926
fn enable_allow_internal_unstable = allow_internal_unstable,
927927
fn enable_custom_derive = custom_derive,
928928
fn enable_pushpop_unsafe = pushpop_unsafe,
929-
fn enable_proc_macro = proc_macro,
930929
}
931930
}
932931

src/libsyntax/feature_gate.rs

+3-9
Original file line numberDiff line numberDiff line change
@@ -279,9 +279,6 @@ declare_features! (
279279
// instead of just the platforms on which it is the C ABI
280280
(active, abi_sysv64, "1.13.0", Some(36167)),
281281

282-
// Macros 1.1
283-
(active, proc_macro, "1.13.0", Some(35900)),
284-
285282
// Allows untagged unions `union U { ... }`
286283
(active, untagged_unions, "1.13.0", Some(32836)),
287284

@@ -377,6 +374,8 @@ declare_features! (
377374
// Allows `..` in tuple (struct) patterns
378375
(accepted, dotdot_in_tuple_patterns, "1.14.0", Some(33627)),
379376
(accepted, item_like_imports, "1.14.0", Some(35120)),
377+
// Macros 1.1
378+
(accepted, proc_macro, "1.15.0", Some(35900)),
380379
);
381380
// (changing above list without updating src/doc/reference.md makes @cmr sad)
382381

@@ -650,11 +649,7 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG
650649
is an experimental feature",
651650
cfg_fn!(fundamental))),
652651

653-
("proc_macro_derive", Normal, Gated(Stability::Unstable,
654-
"proc_macro",
655-
"the `#[proc_macro_derive]` attribute \
656-
is an experimental feature",
657-
cfg_fn!(proc_macro))),
652+
("proc_macro_derive", Normal, Ungated),
658653

659654
("rustc_copy_clone_marker", Whitelisted, Gated(Stability::Unstable,
660655
"rustc_attrs",
@@ -760,7 +755,6 @@ const GATED_CFGS: &'static [(&'static str, &'static str, fn(&Features) -> bool)]
760755
("target_vendor", "cfg_target_vendor", cfg_fn!(cfg_target_vendor)),
761756
("target_thread_local", "cfg_target_thread_local", cfg_fn!(cfg_target_thread_local)),
762757
("target_has_atomic", "cfg_target_has_atomic", cfg_fn!(cfg_target_has_atomic)),
763-
("proc_macro", "proc_macro", cfg_fn!(proc_macro)),
764758
];
765759

766760
#[derive(Debug, Eq, PartialEq)]

src/libsyntax_ext/deriving/mod.rs

+1-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use syntax::attr::HasAttrs;
1515
use syntax::codemap;
1616
use syntax::ext::base::{Annotatable, ExtCtxt, SyntaxExtension};
1717
use syntax::ext::build::AstBuilder;
18-
use syntax::feature_gate::{self, emit_feature_err};
18+
use syntax::feature_gate;
1919
use syntax::ptr::P;
2020
use syntax::symbol::Symbol;
2121
use syntax_pos::Span;
@@ -220,12 +220,6 @@ pub fn expand_derive(cx: &mut ExtCtxt,
220220
.filter(|&(_, ref name)| !is_builtin_trait(name.name().unwrap()))
221221
.next();
222222
if let Some((i, titem)) = macros_11_derive {
223-
if !cx.ecfg.features.unwrap().proc_macro {
224-
let issue = feature_gate::GateIssue::Language;
225-
let msg = "custom derive macros are experimentally supported";
226-
emit_feature_err(cx.parse_sess, "proc_macro", titem.span, issue, msg);
227-
}
228-
229223
let tname = ast::Ident::with_empty_ctxt(titem.name().unwrap());
230224
let path = ast::Path::from_ident(titem.span, tname);
231225
let ext = cx.resolver.resolve_macro(cx.current_expansion.mark, &path, false).unwrap();

src/libsyntax_ext/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
html_root_url = "https://doc.rust-lang.org/nightly/")]
2020
#![cfg_attr(not(stage0), deny(warnings))]
2121

22-
#![feature(proc_macro_lib)]
2322
#![feature(proc_macro_internals)]
2423
#![feature(rustc_private)]
2524
#![feature(staged_api)]

src/libsyntax_ext/proc_macro_registrar.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ use syntax::ext::base::ExtCtxt;
1717
use syntax::ext::build::AstBuilder;
1818
use syntax::ext::expand::ExpansionConfig;
1919
use syntax::parse::ParseSess;
20-
use syntax::feature_gate::Features;
2120
use syntax::fold::Folder;
2221
use syntax::ptr::P;
2322
use syntax::symbol::Symbol;
@@ -47,8 +46,7 @@ pub fn modify(sess: &ParseSess,
4746
is_proc_macro_crate: bool,
4847
is_test_crate: bool,
4948
num_crate_types: usize,
50-
handler: &errors::Handler,
51-
features: &Features) -> ast::Crate {
49+
handler: &errors::Handler) -> ast::Crate {
5250
let ecfg = ExpansionConfig::default("proc_macro".to_string());
5351
let mut cx = ExtCtxt::new(sess, ecfg, resolver);
5452

@@ -66,12 +64,6 @@ pub fn modify(sess: &ParseSess,
6664

6765
if !is_proc_macro_crate {
6866
return krate
69-
} else if !features.proc_macro {
70-
let mut err = handler.struct_err("the `proc-macro` crate type is \
71-
experimental");
72-
err.help("add #![feature(proc_macro)] to the crate attributes to \
73-
enable");
74-
err.emit();
7567
}
7668

7769
if num_crate_types > 1 {

src/test/compile-fail-fulldeps/proc-macro/attribute.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
#![crate_type = "proc-macro"]
12-
#![feature(proc_macro, proc_macro_lib)]
1312

1413
extern crate proc_macro;
1514

src/test/compile-fail-fulldeps/proc-macro/auxiliary/derive-a-b.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// force-host
1212
// no-prefer-dynamic
1313

14-
#![feature(proc_macro, proc_macro_lib)]
1514
#![crate_type = "proc-macro"]
1615

1716
extern crate proc_macro;

src/test/compile-fail-fulldeps/proc-macro/auxiliary/derive-a.rs

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// force-host
1212
// no-prefer-dynamic
1313

14-
#![feature(proc_macro)]
15-
#![feature(proc_macro_lib)]
1614
#![crate_type = "proc-macro"]
1715

1816
extern crate proc_macro;

src/test/compile-fail-fulldeps/proc-macro/auxiliary/derive-b.rs

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// force-host
1212
// no-prefer-dynamic
1313

14-
#![feature(proc_macro)]
15-
#![feature(proc_macro_lib)]
1614
#![crate_type = "proc-macro"]
1715

1816
extern crate proc_macro;

src/test/compile-fail-fulldeps/proc-macro/auxiliary/derive-bad.rs

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// no-prefer-dynamic
1212
// force-host
1313

14-
#![feature(proc_macro)]
15-
#![feature(proc_macro_lib)]
1614
#![crate_type = "proc-macro"]
1715

1816
extern crate proc_macro;

src/test/compile-fail-fulldeps/proc-macro/auxiliary/derive-panic.rs

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// no-prefer-dynamic
1212
// force-host
1313

14-
#![feature(proc_macro)]
15-
#![feature(proc_macro_lib)]
1614
#![crate_type = "proc-macro"]
1715

1816
extern crate proc_macro;

src/test/compile-fail-fulldeps/proc-macro/auxiliary/derive-unstable-2.rs

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// force-host
1212
// no-prefer-dynamic
1313

14-
#![feature(proc_macro)]
15-
#![feature(proc_macro_lib)]
1614
#![crate_type = "proc-macro"]
1715

1816
extern crate proc_macro;

src/test/compile-fail-fulldeps/proc-macro/auxiliary/derive-unstable.rs

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// force-host
1212
// no-prefer-dynamic
1313

14-
#![feature(proc_macro)]
15-
#![feature(proc_macro_lib)]
1614
#![crate_type = "proc-macro"]
1715

1816
extern crate proc_macro;

src/test/compile-fail-fulldeps/proc-macro/define-two.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// no-prefer-dynamic
1212

1313
#![crate_type = "proc-macro"]
14-
#![feature(proc_macro, proc_macro_lib)]
1514

1615
extern crate proc_macro;
1716

src/test/compile-fail-fulldeps/proc-macro/derive-bad.rs

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
// aux-build:derive-bad.rs
1212

13-
#![feature(proc_macro)]
14-
1513
#[macro_use]
1614
extern crate derive_bad;
1715

src/test/compile-fail-fulldeps/proc-macro/derive-still-gated.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:derive-a.rs
1212

13-
#![feature(proc_macro)]
1413
#![allow(warnings)]
1514

1615
#[macro_use]

src/test/compile-fail-fulldeps/proc-macro/expand-to-unstable-2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:derive-unstable-2.rs
1212

13-
#![feature(proc_macro)]
1413
#![allow(warnings)]
1514

1615
#[macro_use]

src/test/compile-fail-fulldeps/proc-macro/expand-to-unstable.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:derive-unstable.rs
1212

13-
#![feature(proc_macro)]
1413
#![allow(warnings)]
1514

1615
#[macro_use]

src/test/compile-fail-fulldeps/proc-macro/export-macro.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// error-pattern: cannot export macro_rules! macros from a `proc-macro` crate
1212

1313
#![crate_type = "proc-macro"]
14-
#![feature(proc_macro)]
1514

1615
#[macro_export]
1716
macro_rules! foo {

src/test/compile-fail-fulldeps/proc-macro/feature-gate-1.rs

-13
This file was deleted.

src/test/compile-fail-fulldeps/proc-macro/feature-gate-2.rs

-13
This file was deleted.

src/test/compile-fail-fulldeps/proc-macro/feature-gate-3.rs

-15
This file was deleted.

src/test/compile-fail-fulldeps/proc-macro/feature-gate-4.rs

-17
This file was deleted.

src/test/compile-fail-fulldeps/proc-macro/feature-gate-5.rs

-12
This file was deleted.

src/test/compile-fail-fulldeps/proc-macro/illegal-proc-macro-derive-use.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(proc_macro, proc_macro_lib)]
12-
1311
extern crate proc_macro;
1412

1513
#[proc_macro_derive(Foo)]

src/test/compile-fail-fulldeps/proc-macro/import.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:derive-a.rs
1212

13-
#![feature(proc_macro)]
1413
#![allow(warnings)]
1514

1615
#[macro_use]

src/test/compile-fail-fulldeps/proc-macro/issue-37788.rs

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
// aux-build:derive-a-b.rs
1212

13-
#![feature(proc_macro)]
14-
1513
#[macro_use]
1614
extern crate derive_a_b;
1715

0 commit comments

Comments
 (0)