TypeScript/tests/baselines/reference/YieldExpression19_es6.js
2015-04-09 22:57:13 -07:00

18 lines
272 B
TypeScript

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