diff options
author | Ravi Shankar <wafflespeanut@gmail.com> | 2015-09-24 02:12:45 +0530 |
---|---|---|
committer | Ravi Shankar <wafflespeanut@gmail.com> | 2015-09-24 02:12:45 +0530 |
commit | 889eec364b6e3df22d36581008289e6fbfb8b39f (patch) | |
tree | 056e9dbc10fb3879b4a281296fe99e88490aacc3 /components/script/dom/mod.rs | |
parent | 705ad72aee58b4fc636bca3a2784c7643048336d (diff) | |
download | servo-889eec364b6e3df22d36581008289e6fbfb8b39f.tar.gz servo-889eec364b6e3df22d36581008289e6fbfb8b39f.zip |
sorted the extern crate, mod & use declarations
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r-- | components/script/dom/mod.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index 77c7766c8eb..ec5ed78773b 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -185,14 +185,16 @@ #[macro_use] pub mod macros; -pub mod bindings; - pub mod types { include!(concat!(env!("OUT_DIR"), "/InterfaceTypes.rs")); } pub mod activation; pub mod attr; +mod create; +#[allow(unsafe_code)] +#[deny(missing_docs, non_snake_case)] +pub mod bindings; pub mod blob; pub mod browsercontext; pub mod canvasgradient; @@ -202,7 +204,6 @@ pub mod characterdata; pub mod closeevent; pub mod comment; pub mod console; -mod create; pub mod crypto; pub mod css; pub mod cssstyledeclaration; @@ -319,6 +320,8 @@ pub mod screen; pub mod servohtmlparser; pub mod storage; pub mod storageevent; +pub mod testbinding; +pub mod testbindingproxy; pub mod text; pub mod textdecoder; pub mod textencoder; @@ -350,6 +353,3 @@ pub mod workernavigator; pub mod xmlhttprequest; pub mod xmlhttprequesteventtarget; pub mod xmlhttprequestupload; - -pub mod testbinding; -pub mod testbindingproxy; |