Skip to content

Commit a3f3b12

Browse files
committed
proc_macro: move the rustc frontend to syntax_ext::proc_macro_impl.
1 parent 578c40e commit a3f3b12

File tree

8 files changed

+448
-468
lines changed

8 files changed

+448
-468
lines changed

src/Cargo.lock

-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/libproc_macro/Cargo.toml

-5
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,3 @@ version = "0.0.0"
77
path = "lib.rs"
88
crate-type = ["dylib"]
99

10-
[dependencies]
11-
syntax = { path = "../libsyntax" }
12-
syntax_pos = { path = "../libsyntax_pos" }
13-
rustc_errors = { path = "../librustc_errors" }
14-
rustc_data_structures = { path = "../librustc_data_structures" }

src/libproc_macro/lib.rs

-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ pub mod bridge;
4848

4949
use bridge::{Frontend, FrontendInterface};
5050

51-
#[unstable(feature = "proc_macro_internals", issue = "27812")]
52-
#[doc(hidden)]
53-
pub mod rustc;
54-
5551
mod diagnostic;
5652

5753
#[unstable(feature = "proc_macro", issue = "38356")]

0 commit comments

Comments
 (0)