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

14 lines
197 B
TypeScript

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