v8/test/inspector/debugger/stepping-generator-expected.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
605 B
Plaintext
Raw Normal View History

Generator stepping
Running test: testStepOverFromInitialYield
Setting breakpoint on implicit initial yield
Calling callGenerator()
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()
function* generator#() {
var a = 42;
Stepping into while paused on the initial yield
function callGenerator() {
return generator();#
}