aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/root.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2025-03-30 07:06:30 -0400
committerGitHub <noreply@github.com>2025-03-30 11:06:30 +0000
commitb445053a7c5372320c53e2084c274362bc204357 (patch)
tree0699f64435a23ddaae0a2f81b10959047be1467c /components/script/dom/bindings/root.rs
parent971490084e5ab994fb6b1e651044ad1f5afa4169 (diff)
downloadservo-b445053a7c5372320c53e2084c274362bc204357.tar.gz
servo-b445053a7c5372320c53e2084c274362bc204357.zip
More miscellaneous script splitting changes (#36220)
* script: Move HasParent to script_bindings and update imports for InheritTypes. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make principal creation generic over DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move a bunch of proxy-related code to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make some proxy-related code generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move DomSlice to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move some utility bindings code to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make enumerating and resolving globals generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make realm helpers generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move implementations on concrete DOM types to concrete bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make additional codegen helpers generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make iterator creation generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make reporting an exception a generic operation. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move AsCCharPtrPtr to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Formatting. 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>
Diffstat (limited to 'components/script/dom/bindings/root.rs')
-rw-r--r--components/script/dom/bindings/root.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/components/script/dom/bindings/root.rs b/components/script/dom/bindings/root.rs
index 4e8cbf21882..923aa51351d 100644
--- a/components/script/dom/bindings/root.rs
+++ b/components/script/dom/bindings/root.rs
@@ -57,26 +57,6 @@ impl Drop for ThreadLocalStackRoots<'_> {
}
}
-/// Get a slice of references to DOM objects.
-pub(crate) trait DomSlice<T>
-where
- T: JSTraceable + DomObject,
-{
- /// Returns the slice of `T` references.
- fn r(&self) -> &[&T];
-}
-
-impl<T> DomSlice<T> for [Dom<T>]
-where
- T: JSTraceable + DomObject,
-{
- #[inline]
- fn r(&self) -> &[&T] {
- let _ = mem::transmute::<Dom<T>, &T>;
- unsafe { &*(self as *const [Dom<T>] as *const [&T]) }
- }
-}
-
pub(crate) trait ToLayout<T> {
/// Returns `LayoutDom<T>` containing the same pointer.
///