diff options
author | Josh Matthews <josh@joshmatthews.net> | 2025-03-16 09:46:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-16 13:46:14 +0000 |
commit | d35da38a2fd6f093967e74f704612391b4988e69 (patch) | |
tree | 96c8705a5a597be25ac74b58043e57b3e06992f4 /components/script/dom/bindings/function.rs | |
parent | 3ecd1c069978f6ceb20e4ee6af599fbef425e9da (diff) | |
download | servo-d35da38a2fd6f093967e74f704612391b4988e69.tar.gz servo-d35da38a2fd6f093967e74f704612391b4988e69.zip |
Cleanups for future script crate split (#35987)
* script: Avoid direct impl blocks on generated dicts and unions.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* script: Remove references to codegen-specific import module.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* Fix tidy.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
---------
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
Diffstat (limited to 'components/script/dom/bindings/function.rs')
-rw-r--r-- | components/script/dom/bindings/function.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/bindings/function.rs b/components/script/dom/bindings/function.rs index 86f4903b07d..2419dd05272 100644 --- a/components/script/dom/bindings/function.rs +++ b/components/script/dom/bindings/function.rs @@ -36,7 +36,7 @@ macro_rules! native_raw_obj_fn { #[allow(clippy::macro_metavars_in_unsafe)] unsafe { let name: &std::ffi::CStr = $name; - let raw_fun = $crate::dom::bindings::import::module::jsapi::JS_NewFunction( + let raw_fun = js::jsapi::JS_NewFunction( *$cx, Some(wrapper), $nargs, @@ -44,7 +44,7 @@ macro_rules! native_raw_obj_fn { name.as_ptr() as *const std::ffi::c_char, ); assert!(!raw_fun.is_null()); - $crate::dom::bindings::import::module::jsapi::JS_GetFunctionObject(raw_fun) + js::jsapi::JS_GetFunctionObject(raw_fun) } }}; } |