Remove extern mod foo (name="bar") syntax, closes #9543

This commit is contained in:
Florian Hahn
2013-11-26 23:54:32 +01:00
parent 51ace54597
commit f42a36cded
17 changed files with 29 additions and 32 deletions

View File

@@ -1057,7 +1057,7 @@ pub enum view_item_ {
// optional @str: if present, this is a location (containing
// arbitrary characters) from which to fetch the crate sources
// For example, extern mod whatever = "github.com/mozilla/rust"
view_item_extern_mod(Ident, Option<(@str, StrStyle)>, ~[@MetaItem], NodeId),
view_item_extern_mod(Ident, Option<(@str, StrStyle)>, NodeId),
view_item_use(~[@view_path]),
}