Status: Accepted
Owner: [email protected]
CC: [email protected],  [email protected]
Labels: Type-Bug Priority-High Harmony

New issue 3572 by [email protected]: Debugger cannot step into ES6 generator.next()
https://code.google.com/p/v8/issues/detail?id=3572

Cannot step into generator.next().
Code example:

------------------------------------------
function* numbers() {
    for (var i = 0 ;; ++i) {
        console.log("yielding " + i);
        yield i;
    }
}

var it = numbers();
debugger;
for (var num of it) {
    if (num >= 10) {
        console.log("break for-of loop");
        break;
    }
}

debugger;
it.next();
------------------------------------------

Stepping into after "debugger" statements will not jump into generator function.


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to