mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
sorted the extern crate, mod & use declarations
This commit is contained in:
parent
705ad72aee
commit
889eec364b
194 changed files with 804 additions and 870 deletions
|
@ -9,9 +9,9 @@ use dom::bindings::global::global_object_for_js_object;
|
|||
use dom::bindings::utils::Reflectable;
|
||||
use dom::window::ScriptHelpers;
|
||||
use horribly_inefficient_timers;
|
||||
use js::jsapi::{RootedValue, HandleValue, Heap};
|
||||
use js::jsapi::{HandleValue, Heap, RootedValue};
|
||||
use js::jsval::{JSVal, UndefinedValue};
|
||||
use script_task::{ScriptChan, TimerSource, CommonScriptMsg};
|
||||
use script_task::{CommonScriptMsg, ScriptChan, TimerSource};
|
||||
use std::borrow::ToOwned;
|
||||
use std::cell::Cell;
|
||||
use std::cmp;
|
||||
|
@ -20,12 +20,11 @@ use std::default::Default;
|
|||
use std::hash::{Hash, Hasher};
|
||||
use std::rc::Rc;
|
||||
use std::sync::mpsc::Select;
|
||||
use std::sync::mpsc::{channel, Sender};
|
||||
use std::sync::mpsc::{Sender, channel};
|
||||
use util::mem::HeapSizeOf;
|
||||
use util::str::DOMString;
|
||||
use util::task::spawn_named;
|
||||
|
||||
|
||||
#[derive(JSTraceable, PartialEq, Eq, Copy, Clone, HeapSizeOf)]
|
||||
pub struct TimerId(i32);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue