mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 11:36:57 +00:00

PR-URL: https://github.com/nodejs/node/pull/45230 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
15 lines
267 B
Plaintext
15 lines
267 B
Plaintext
Async generator stepping
|
|
|
|
Running test: testStepIntoInitialYield
|
|
Setting breakpoint on call to generator()
|
|
Calling callGenerator()
|
|
function callGenerator() {
|
|
#return generator();
|
|
}
|
|
|
|
Stepping into the generator()
|
|
function callGenerator() {
|
|
return generator();#
|
|
}
|
|
|