aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/trace.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/bindings/trace.rs')
-rw-r--r--components/script/dom/bindings/trace.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/components/script/dom/bindings/trace.rs b/components/script/dom/bindings/trace.rs
index 4af66e2edba..8d3f5c1684e 100644
--- a/components/script/dom/bindings/trace.rs
+++ b/components/script/dom/bindings/trace.rs
@@ -137,6 +137,26 @@ impl<T: JSTraceable> JSTraceable for Box<T> {
}
}
+impl<T: JSTraceable> JSTraceable for *const T {
+ fn trace(&self, trc: *mut JSTracer) {
+ if !self.is_null() {
+ unsafe {
+ (**self).trace(trc)
+ }
+ }
+ }
+}
+
+impl<T: JSTraceable> JSTraceable for *mut T {
+ fn trace(&self, trc: *mut JSTracer) {
+ if !self.is_null() {
+ unsafe {
+ (**self).trace(trc)
+ }
+ }
+ }
+}
+
impl<T: JSTraceable+Copy> JSTraceable for Cell<T> {
fn trace(&self, trc: *mut JSTracer) {
self.get().trace(trc)