Source code

Revision control

Copy as Markdown

Other Tools

function* g() {
yield
}
g()
function f() {
g()
}
try {
new f
} catch (e) {}