Current File : //usr/lib/node_modules/pm2/node_modules/degenerator/test/multiple.expected.js
function* foo() {
    return yield baz();
}
function* bar() {
    return yield foo(baz);
}
function* baz() {
    return yield bar();
}