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

14 lines
198 B
TypeScript

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