about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-15 17:46:42 -0800
committerbors <bors@rust-lang.org>2014-01-15 17:46:42 -0800
commita5ed0c58cb9f38af940403c34e283b68c89f5aa2 (patch)
treea8be28b83687b5a2fabc870c65a3a49b66b4bd95 /src/libsyntax
parent36971217aa64b6fc5f543f2620e488d16e67b1f4 (diff)
parent29840addd46b6ae01b61ee93247164d5818f09e0 (diff)
downloadrust-a5ed0c58cb9f38af940403c34e283b68c89f5aa2.tar.gz
rust-a5ed0c58cb9f38af940403c34e283b68c89f5aa2.zip
auto merge of #11565 : mozilla/rust/snapshot, r=huonw
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index b113308ca51..889a67333a0 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -638,13 +638,6 @@ pub enum TokenTree {
     TTNonterminal(Span, Ident)
 }
 
-// NOTE remove after next snapshot
-// Required for ext::quote macros.
-#[cfg(stage0)]
-pub fn tt_tok(span: Span, tok: ::parse::token::Token) -> TokenTree {
-    TTTok(span, tok)
-}
-
 //
 // Matchers are nodes defined-by and recognized-by the main rust parser and
 // language, but they're only ever found inside syntax-extension invocations;