TypeScript/tests/baselines/reference/YieldExpression19_es6.js
2016-04-06 17:13:51 -07:00

18 lines
274 B
TypeScript

//// [YieldExpression19_es6.ts]
function*foo() {
function bar() {
function* quux() {
yield(foo);
}
}
}
//// [YieldExpression19_es6.js]
function* foo() {
function bar() {
function* quux() {
yield (foo);
}
}
}