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

12 lines
150 B
TypeScript

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