Files
servo/components/script/dom/debuggerresumeevent.rs
eri 88f2469270 devtools: Implement initial support for Step in, Step out and Step over (#42907)
We are adding initial support for stepping in the debugger. Step over
mostly works, but Step in and Step out have some quirks that we are
working on.

![2026-02-27
12-32-05](https://github.com/user-attachments/assets/0b73b32c-efa3-444c-80a4-f863a64b6fdc)

Testing: DevTools tests and manual checks.
Part of: #36027

Signed-off-by: eri <eri@igalia.com>
Co-authored-by: atbrakhi <atbrakhi@igalia.com>
2026-03-02 18:35:02 +00:00

65 lines
2.0 KiB
Rust

/* 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 script_bindings::str::DOMString;
use crate::dom::bindings::codegen::Bindings::DebuggerResumeEventBinding::DebuggerResumeEventMethods;
use crate::dom::bindings::codegen::Bindings::EventBinding::Event_Binding::EventMethods;
use crate::dom::bindings::reflector::reflect_dom_object;
use crate::dom::bindings::root::DomRoot;
use crate::dom::event::Event;
use crate::dom::types::GlobalScope;
use crate::script_runtime::CanGc;
#[dom_struct]
/// Event for Rust → JS calls in [`crate::dom::DebuggerGlobalScope`].
pub(crate) struct DebuggerResumeEvent {
event: Event,
resume_limit_type: Option<DOMString>,
frame_actor_id: Option<DOMString>,
}
impl DebuggerResumeEvent {
pub(crate) fn new(
debugger_global: &GlobalScope,
resume_limit_type: Option<DOMString>,
frame_actor_id: Option<DOMString>,
can_gc: CanGc,
) -> DomRoot<Self> {
let result = Box::new(Self {
event: Event::new_inherited(),
resume_limit_type,
frame_actor_id,
});
let result = reflect_dom_object(result, debugger_global, can_gc);
result.event.init_event("resume".into(), false, false);
result
}
}
impl DebuggerResumeEventMethods<crate::DomTypeHolder> for DebuggerResumeEvent {
// check-tidy: no specs after this line
fn IsTrusted(&self) -> bool {
self.event.IsTrusted()
}
fn GetResumeLimitType(&self) -> Option<DOMString> {
self.resume_limit_type.clone()
}
fn GetFrameActorID(&self) -> Option<DOMString> {
self.frame_actor_id.clone()
}
}
impl Debug for DebuggerResumeEvent {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("DebuggerResumeEvent").finish()
}
}