/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script/dom/debugger/debuggeradddebuggeeevent.rs
77 строк
3 KB
Gae24
script: Drop unsafe `ToJSValConvertible::to_jsval` and wrapper trait `SafeToJSValConvertible` (#46890)
31 июл 2026, 10:20
Не верифицирован
31 июл 2026, 10:20
559e0a5
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use dom_struct::dom_struct; use js::context::JSContext; use js::conversions::ToJSValConvertible; use js::jsapi::{Heap, JSObject, Value}; use js::rust::MutableHandleObject; use script_bindings::reflector::{DomObject, reflect_dom_object_with_cx}; use script_bindings::str::DOMString; use crate::dom::bindings::codegen::Bindings::DebuggerAddDebuggeeEventBinding::DebuggerAddDebuggeeEventMethods; use crate::dom::bindings::codegen::Bindings::EventBinding::Event_Binding::EventMethods; use crate::dom::bindings::root::{Dom, DomRoot}; use crate::dom::event::Event; use crate::dom::types::{GlobalScope, PipelineId}; #[dom_struct] /// Event for Rust → JS calls in [`crate::dom::debugger::DebuggerGlobalScope`]. pub(crate) struct DebuggerAddDebuggeeEvent { event: Event, #[ignore_malloc_size_of = "Measured by the JS engine"] global: Heap<*mut JSObject>, pipeline_id: Dom<PipelineId>, worker_id: Option<DOMString>, } impl DebuggerAddDebuggeeEvent { pub(crate) fn new( cx: &mut JSContext, debugger_global: &GlobalScope, global: &GlobalScope, pipeline_id: &PipelineId, worker_id: Option<DOMString>, ) -> DomRoot<Self> { let result = Box::new(Self { event: Event::new_inherited(), global: Heap::default(), pipeline_id: Dom::from_ref(pipeline_id), worker_id, }); let result = reflect_dom_object_with_cx(result, debugger_global, cx); result.event.init_event("addDebuggee".into(), false, false); // Convert the debuggee global’s reflector to a Value, wrapping it from its originating realm (debuggee realm) // into the active realm (debugger realm) so that it can be passed across compartments. rooted!(&in(cx) let mut wrapped_global: Value); global .reflector() .safe_to_jsval(cx, wrapped_global.handle_mut()); result.global.set(wrapped_global.to_object()); result } } impl DebuggerAddDebuggeeEventMethods<crate::DomTypeHolder> for DebuggerAddDebuggeeEvent { // check-tidy: no specs after this line fn Global(&self, mut return_value: MutableHandleObject) { return_value.set(self.global.get()); } fn PipelineId( &self, ) -> DomRoot<<crate::DomTypeHolder as script_bindings::DomTypes>::PipelineId> { DomRoot::from_ref(&self.pipeline_id) } fn GetWorkerId(&self) -> Option<DOMString> { self.worker_id.clone() } fn IsTrusted(&self) -> bool { self.event.IsTrusted() } }