We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
// 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();