mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Move CustomTraceable to script_bindings. (#35988)
* script: Move CustomTraceable to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move record binding support to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Address clippy warnings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
This commit is contained in:
parent
d35da38a2f
commit
c8d8787959
15 changed files with 340 additions and 277 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue