libsyntax: Add more quasiquoting macros

This commit is contained in:
Kyle Mayes
2015-11-11 15:19:01 -05:00
parent f1f5c04c07
commit 8c88308c68
8 changed files with 137 additions and 11 deletions

View File

@@ -684,6 +684,7 @@ pub fn noop_fold_interpolated<T: Folder>(nt: token::Nonterminal, fld: &mut T)
token::NtGenerics(generics) => token::NtGenerics(fld.fold_generics(generics)),
token::NtWhereClause(where_clause) =>
token::NtWhereClause(fld.fold_where_clause(where_clause)),
token::NtArg(arg) => token::NtArg(fld.fold_arg(arg)),
}
}