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

12 lines
148 B
TypeScript

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