TypeScript/tests/baselines/reference/YieldExpression4_es6.js
2016-04-08 18:12:25 -07:00

12 lines
151 B
TypeScript

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