rustc: "tag" -> "enum"

This commit is contained in:
Patrick Walton
2012-01-19 14:24:03 -08:00
parent e6a7383a5f
commit bdb8f6cf52
37 changed files with 183 additions and 183 deletions

View File

@@ -11,7 +11,7 @@ type macro_def = {ident: str, ext: syntax_extension};
type macro_definer =
fn@(ext_ctxt, span, @ast::expr, option::t<str>) -> macro_def;
tag syntax_extension {
enum syntax_extension {
normal(syntax_expander);
macro_defining(macro_definer);
}