about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2014-01-15 07:18:40 -0500
committerDaniel Micay <danielmicay@gmail.com>2014-01-15 08:22:56 -0500
commit197fe67e11af002033bb2dc7b5a48ef433a7b103 (patch)
tree833ef111494ac6a79338642aa69c251a3cb02e87 /src/libsyntax
parent29070c3bee8846d22030305179fdd3f95cb320d7 (diff)
downloadrust-197fe67e11af002033bb2dc7b5a48ef433a7b103.tar.gz
rust-197fe67e11af002033bb2dc7b5a48ef433a7b103.zip
register snapshots
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;