stepping-async-generator-expected.txt 623 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
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();#
}