diff options
author | Josh Matthews <josh@joshmatthews.net> | 2017-01-12 12:39:05 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2017-02-01 12:54:33 -0500 |
commit | 32d4f84a30035b6b1094f7e68adbe1e6a883bb9b (patch) | |
tree | 03d3f355d08cf5fb1b790c64e5fff884e6cb79d1 /components/script/lib.rs | |
parent | bac2f68b541139702ac4347310cffe369f1bbb85 (diff) | |
download | servo-32d4f84a30035b6b1094f7e68adbe1e6a883bb9b.tar.gz servo-32d4f84a30035b6b1094f7e68adbe1e6a883bb9b.zip |
Generalize promise job queue into solitary microtask queue.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 15d1d2d322b..033e6415879 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -108,6 +108,7 @@ mod dom; pub mod fetch; pub mod layout_wrapper; mod mem; +mod microtask; mod network_listener; pub mod origin; pub mod script_runtime; |