auto merge of #2290 : saneyuki/servo/export, r=jdm

- Fix #2128
- Take over from #2220

I didn't change `InterfaceTypes.rs` to `type.rs` because `type` is very common name which might be troublesome.
This commit is contained in:
bors-servo 2014-05-01 23:34:39 -04:00
commit b36b779d24
98 changed files with 105 additions and 107 deletions

View file

@ -45,7 +45,6 @@ pub mod dom {
pub mod str;
pub mod trace;
pub mod codegen {
pub use self::BindingDeclarations::*;
pub mod InterfaceTypes;
pub mod InheritTypes;
pub mod PrototypeList;
@ -55,9 +54,8 @@ pub mod dom {
}
}
pub mod types {
pub use super::bindings::codegen::InterfaceTypes::*;
}
#[path="bindings/codegen/InterfaceTypes.rs"]
pub mod types;
pub mod attr;
pub mod attrlist;