syntax: impl ToTokens for P<ast::ImplItem>
This commit is contained in:
parent
f9121e87a6
commit
178b28099f
1 changed files with 6 additions and 0 deletions
|
|
@ -121,6 +121,12 @@ pub mod rt {
|
|||
}
|
||||
}
|
||||
|
||||
impl ToTokens for P<ast::ImplItem> {
|
||||
fn to_tokens(&self, _cx: &ExtCtxt) -> Vec<TokenTree> {
|
||||
vec![TokenTree::Token(self.span, token::Interpolated(token::NtImplItem(self.clone())))]
|
||||
}
|
||||
}
|
||||
|
||||
impl ToTokens for ast::TraitItem {
|
||||
fn to_tokens(&self, _cx: &ExtCtxt) -> Vec<TokenTree> {
|
||||
vec![TokenTree::Token(self.span,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue