Source code
Revision control
Copy as Markdown
Other Tools
var t;↩
(function () {↩
t = (function*() {↩
yield k();↩
})();↩
function h() {↩
}↩
function k() {↩
return function() { h(); };↩
}↩
})();↩
t.next();↩
↩