aboutsummaryrefslogtreecommitdiffstats
path: root/components/script_bindings/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script_bindings/lib.rs')
-rw-r--r--components/script_bindings/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/components/script_bindings/lib.rs b/components/script_bindings/lib.rs
index 8090144b73b..e857a2289f8 100644
--- a/components/script_bindings/lib.rs
+++ b/components/script_bindings/lib.rs
@@ -24,6 +24,7 @@ pub mod error;
pub mod inheritance;
pub mod iterable;
pub mod like;
+pub mod record;
pub mod reflector;
pub mod root;
pub mod script_runtime;
@@ -51,3 +52,5 @@ pub mod codegen {
// Since they are used in derive macros,
// it is useful that they are accessible at the root of the crate.
pub(crate) use js::gc::Traceable as JSTraceable;
+
+pub(crate) use crate::trace::CustomTraceable;