about summary refs log tree commit diff
path: root/src/libsyntax/ext
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2019-09-21 21:33:37 +0300
committerAleksey Kladov <aleksey.kladov@gmail.com>2019-09-21 21:33:37 +0300
commit53a6a2f3226652e212bba6fcf37166a2fe3ecfca (patch)
tree1169135ea1e7242a7e0bb98254578ceb36a4216f /src/libsyntax/ext
parent16c401167366d7c6deb9268058fc5f254f9d9371 (diff)
downloadrust-53a6a2f3226652e212bba6fcf37166a2fe3ecfca.tar.gz
rust-53a6a2f3226652e212bba6fcf37166a2fe3ecfca.zip
fully remove AstBuilder
The mentioned Cargo test is fixed in https://github.com/rust-lang/cargo/pull/7210
Diffstat (limited to 'src/libsyntax/ext')
-rw-r--r--src/libsyntax/ext/build.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libsyntax/ext/build.rs b/src/libsyntax/ext/build.rs
index f1d0e0b68f7..60560ae96de 100644
--- a/src/libsyntax/ext/build.rs
+++ b/src/libsyntax/ext/build.rs
@@ -9,9 +9,6 @@ use crate::ThinVec;
 use rustc_target::spec::abi::Abi;
 use syntax_pos::{Pos, Span};
 
-// Left so that Cargo tests don't break, this can be removed once those no longer use it
-pub trait AstBuilder {}
-
 impl<'a> ExtCtxt<'a> {
     pub fn path(&self, span: Span, strs: Vec<ast::Ident> ) -> ast::Path {
         self.path_all(span, false, strs, vec![], vec![])