about summary refs log tree commit diff
path: root/src/libsyntax/ext
diff options
context:
space:
mode:
authorVladimir Pouzanov <farcaller@gmail.com>2015-03-19 17:01:46 +0000
committerVladimir Pouzanov <farcaller@gmail.com>2015-03-19 17:04:03 +0000
commitbd1f562e19574fa3be5bec2aa661816ac830bb69 (patch)
tree83832cd5c2d20c5d89386f8df83e4ff7c2972a9e /src/libsyntax/ext
parente3cde9783b33ed4decd467602ff3d47505eadab5 (diff)
downloadrust-bd1f562e19574fa3be5bec2aa661816ac830bb69.tar.gz
rust-bd1f562e19574fa3be5bec2aa661816ac830bb69.zip
Added missing impl_to_source! and impl_to_tokens! for TraitItem.
Diffstat (limited to 'src/libsyntax/ext')
-rw-r--r--src/libsyntax/ext/quote.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libsyntax/ext/quote.rs b/src/libsyntax/ext/quote.rs
index de00ea4deae..c11ffe66e6c 100644
--- a/src/libsyntax/ext/quote.rs
+++ b/src/libsyntax/ext/quote.rs
@@ -177,6 +177,7 @@ pub mod rt {
     impl_to_source! { Generics, generics_to_string }
     impl_to_source! { P<ast::Item>, item_to_string }
     impl_to_source! { P<ast::ImplItem>, impl_item_to_string }
+    impl_to_source! { P<ast::TraitItem>, trait_item_to_string }
     impl_to_source! { P<ast::Stmt>, stmt_to_string }
     impl_to_source! { P<ast::Expr>, expr_to_string }
     impl_to_source! { P<ast::Pat>, pat_to_string }
@@ -310,6 +311,7 @@ pub mod rt {
     impl_to_tokens! { ast::Ident }
     impl_to_tokens! { P<ast::Item> }
     impl_to_tokens! { P<ast::ImplItem> }
+    impl_to_tokens! { P<ast::TraitItem> }
     impl_to_tokens! { P<ast::Pat> }
     impl_to_tokens! { ast::Arm }
     impl_to_tokens_lifetime! { &'a [P<ast::Item>] }