/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script/dom/debugger/debuggerinterruptevent.rs
46 строк
2 KB
lumiscosity
script: Migrate `dom/debugger` to `&mut JSContext` (#46268)
04 июл 2026, 22:47
Не верифицирован
04 июл 2026, 22:47
7d67364
Код
Авторство
О чём код?
/* 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 std::fmt::Debug; use dom_struct::dom_struct; use js::context::JSContext; use script_bindings::reflector::reflect_dom_object_with_cx; use crate::dom::bindings::codegen::Bindings::DebuggerInterruptEventBinding::DebuggerInterruptEventMethods; use crate::dom::bindings::codegen::Bindings::EventBinding::Event_Binding::EventMethods; use crate::dom::bindings::root::DomRoot; use crate::dom::event::Event; use crate::dom::types::GlobalScope; #[dom_struct] /// Event for Rust → JS calls in [`crate::dom::debugger::DebuggerGlobalScope`]. pub(crate) struct DebuggerInterruptEvent { event: Event, } impl DebuggerInterruptEvent { pub(crate) fn new(cx: &mut JSContext, debugger_global: &GlobalScope) -> DomRoot<Self> { let result = Box::new(Self { event: Event::new_inherited(), }); let result = reflect_dom_object_with_cx(result, debugger_global, cx); result.event.init_event("interrupt".into(), false, false); result } } impl DebuggerInterruptEventMethods<crate::DomTypeHolder> for DebuggerInterruptEvent { // check-tidy: no specs after this line fn IsTrusted(&self) -> bool { self.event.IsTrusted() } } impl Debug for DebuggerInterruptEvent { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.debug_struct("DebuggerInterruptEvent").finish() } }