blob: f46d0fd2f90a8b2e376021b9839c488e2958119d [file] [log] [blame] [edit]
Async generator stepping
Running test: testStepOverFromInitialYield
Setting breakpoint on implicit initial yield
Calling callGenerator()
async function* generator#() {
var a = 42;
Stepping over while paused on the initial yield
function callGenerator() {
return generator();#
}
Running test: testStepIntoInitialYield
Setting breakpoint on call to generator()
Calling callGenerator()
function callGenerator() {
#return generator();
}
Stepping into the generator()
async function* generator#() {
var a = 42;
Stepping into while paused on the initial yield
function callGenerator() {
return generator();#
}