aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2014-11-20 17:17:02 -0500
committerJosh Matthews <josh@joshmatthews.net>2014-12-29 13:53:48 -0500
commit2f059c15e76bd02a4cd6baa4a946f64ab8e6878a (patch)
treed9a4f1401714992c00b9cf00f030a2ef884c88a2 /components/script/lib.rs
parentc4b93d30e4d56e3163f7ef4fdf0701cb7e0fb33c (diff)
downloadservo-2f059c15e76bd02a4cd6baa4a946f64ab8e6878a.tar.gz
servo-2f059c15e76bd02a4cd6baa4a946f64ab8e6878a.zip
Allow refcounting arbitrary DOM objects in concert with the GC to enable safe, asynchronous/cross-task references to pinned objects.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index b62b137a38e..7ad317a1296 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -59,6 +59,7 @@ pub mod dom {
pub mod cell;
pub mod global;
pub mod js;
+ pub mod refcounted;
pub mod utils;
pub mod callback;
pub mod error;