diff options
author | Hugo Thiessard <hugo.thiessard@etu.u-bordeaux.fr> | 2015-09-18 22:02:04 +0200 |
---|---|---|
committer | Hugo Thiessard <hugo.thiessard@etu.u-bordeaux.fr> | 2015-09-18 22:02:04 +0200 |
commit | 6565e7b02fafea933e27e59bed1db876b56ac005 (patch) | |
tree | 0b371fa5d7fd2674793843f4c3034a9ff81c25e9 /components/script/dom/bindings | |
parent | e81e91207cb87ade4eeaa99917eaecd0f5ecd00d (diff) | |
download | servo-6565e7b02fafea933e27e59bed1db876b56ac005.tar.gz servo-6565e7b02fafea933e27e59bed1db876b56ac005.zip |
Issue #7390 correct the order of mod declaration
Diffstat (limited to 'components/script/dom/bindings')
-rw-r--r-- | components/script/dom/bindings/mod.rs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/components/script/dom/bindings/mod.rs b/components/script/dom/bindings/mod.rs index 1ded213d0f4..d4236ba08f6 100644 --- a/components/script/dom/bindings/mod.rs +++ b/components/script/dom/bindings/mod.rs @@ -135,19 +135,19 @@ #![allow(unsafe_code)] #![deny(missing_docs, non_snake_case)] +pub mod callback; pub mod cell; +pub mod conversions; +pub mod error; pub mod global; pub mod js; -pub mod refcounted; -pub mod utils; -pub mod callback; -pub mod error; -pub mod conversions; -pub mod proxyhandler; pub mod num; +pub mod proxyhandler; +pub mod refcounted; pub mod str; pub mod structuredclone; pub mod trace; +pub mod utils; /// Generated JS-Rust bindings. #[allow(missing_docs, non_snake_case)] @@ -179,4 +179,3 @@ pub mod codegen { include!(concat!(env!("OUT_DIR"), "/UnionTypes.rs")); } } - |