-
Notifications
You must be signed in to change notification settings - Fork 72
DebugToolbar
github-actions[bot] edited this page Apr 23, 2024
·
2 revisions
// get a handle for existing toolbar (i.e. debug session needs to be in progress)
const bar = await DebugToolbar.create();
// continue
await bar.continue();
// pause
await bar.pause();
// step over
await bar.stepOver();
// step into
await bar.stepInto();
// step out
await bar.stepOut();
// restart
await bar.restart();
// stop
await bar.stop();
await bar.waitForBreakPoint();